Source_Code stringlengths 69 484k | IR_Original stringlengths 2.05k 17.9M |
|---|---|
#include<stdio.h>
int main()
{
int n,x,r=1<<29;
for(scanf("%d",&n);n>0;n--)
{
int r0=0;
scanf("%d",&x);
while(x%2<1)
{
r0++;
x/=2;
}
if(r>r0)
{
r=r0;
}
}
printf("%d\n",r);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104057/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104057/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main()
{
int arr[10007],i,j,siz,k=0,a,b,countt=0,page;
scanf("%d",&siz);
for(i=1;i<=siz;i++)
{
scanf("%d %d",&a,&b);
arr[k++]=a;
arr[k++]=b;
}
scanf("%d",&page);
for(i=0;i<k;i++)
{
if(page>=arr[i]&&page<=arr[i+1])
break;
cou... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_10410/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_10410/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_addr ... |
/*
結果:
*/
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <limits.h>
#include <stdbool.h>
#define inf (INT_MAX-1)
#define INF 9223372036854775807
#define PI 3.14159265358979323846;
#define EPS 1e-10
#define sq(n) ((n)*(n))
#define rep(i,n) for(i=0;i<... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104150/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104150/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@mod = dso_local local_unna... |
#include <stdio.h>
int main()
{
int n, count, i, min = 100;
int a[200];
//nを入力(1~200)
scanf("%d", &n);
//データを入力(1~10^9)
for (i = 0; i < n; i++)
scanf("%d", &a[i]);
//整数を2で割れる回数が一番少ないものを結果として出力
//すべてを同時に割るので、それが基準になるということ。
for (i = 0; i < n; i++)
{
for (count = 0; a[i] % 2 == 0; a[i] /= 2)
count... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104194/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104194/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{
int i,n,b=0,f=0;
scanf("%d",&n);
long int a[n];
for(i=0;i<n;i++)
scanf("%ld",&a[i]);
while(1)
{
for(i=0;i<n;i++)
{
if (a[i]%2!=0)
{
f=1;
break;
}
a[i]=a[i]/2;
}
if (f==1)
break;
b=b+1;
}
printf("%d",b);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104237/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104237/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int s[100000],a1[200000],a2[200000];
char c;
int i,q,t,f,counter=1,sp1=0,sp2=0;
int n = 0;
while((c=getchar())!='\n'){
s[n++] = (int)c;
}
//rewind(stdin);
scanf("%d",&q);
for(i=0;i<q;i++){
scanf("%d",&t);
if(t==1){
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104280/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104280/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define false 0
#define true (!false)
#define STRMAX (300000)
char S[STRMAX];
char pre[STRMAX];
char post[STRMAX];
int revf = false;
int Q;
void revers( char *s )
{
int i;
int len = strlen( s );
char buf[STRMAX];
strcpy( buf, s );
for( ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104323/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104323/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@revf = dso_local local_unn... |
#include <stdio.h>
int A = 0;
int d;
short ng = 0;
int main(){
scanf("%d", &A);
int ward = 0;
int back = 0;
int i = -1;
while(++i < A){
scanf("%d", &d);
if( ng ) continue;
if( ward < i ){
ng = 1;
}
if( ward < i + d / 10){
ward = i +... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104374/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104374/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@A = dso_local global i32 0... |
#include <stdio.h>
int main() {
int n;
scanf("%d", &n);
int h[100000]={};
for (int i = 0; i < n; i++)
scanf("%d", &h[i]);
int max=h[0];
for (int i = 1; i < n; i++) {
if(max>h[i]+1){
printf("No\n");
return 0;
}
if(max<h[i])
max=h[i];
}
printf("Yes\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104417/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104417/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int n;
int h[100001];
int i;
int check = 1;
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%d",&h[i]);
}
for(i=0;i<n-1;i++){
if(h[n-1-i] < h[n-2-i]){
h[n-2-i] -= 1;
if(h[n-1-i] < h[n-2-i]){
check = 0;
break;
}
}
}
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104460/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104460/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int N,dif,x=0, cnt=0;
scanf("%d", &N);
int H[N];
for(int i=0; i<N; i++)
scanf("%d", &H[i]);
for(int i=N-1; i>0;i--){
if(H[i]>=H[i-1]){
}
else if(H[i-1]-H[i]==1){
H[i-1] -= 1;
}
else {
x = ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104503/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104503/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int check(int height[],int n){
for(int i=1; i<n; i++){
if(height[i] < height[i-1]){
height[i]++;
if(height[i] < height[i-1]){
return -1;
}
}
}
return 1;
}
int main(){
int n;
scanf("%d",&n);
int height[n];
for(int i=0; i<n; i++){
scanf("%d", &height[i]);
}
if(check(height... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104547/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104547/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{
char C;
scanf("%c", &C);
if(C == 'a' || C == 'e' || C == 'i' || C == 'o' || C == 'u') printf("vowel");
else printf("consonant");
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104590/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104590/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
char c;
int i=0;
scanf("%c", &c);
if(c=='a'){
i = 1;
}
if (c == 'e')
{
i = 1;
}
if (c == 'i')
{
i = 1;
}
if (c == 'o')
{
i = 1;
}
if (c == 'u')
{
i = 1;
}
if(i==1){
prin... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104633/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104633/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{
char c;
scanf("%c",&c);
if(c=='a'||c=='e'||c=='i'||c=='o'||c=='u')
printf("vowel");
else
printf("consonant");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104677/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104677/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void) {
char a[100005];
int i=0;
scanf("%s",a);
while(1)
{
if(a[i]=='\0') break;
printf("%c",a[i]);
i++;
}
while(i--)
{
printf("%c",a[i]);
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_10472/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_10472/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_addr ... |
#include<stdio.h>
char c;
int main(){
c=getchar();
if(c=='a'||c=='i'||c=='u'||c=='e'||c=='o'){
printf("vowel\n");
}else{
printf("consonant\n");
}
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104763/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104763/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@c = dso_local local_unname... |
#include <stdio.h>
int main()
{
char n;
scanf("%c",&n);
if(n=='a')
{
printf("vowel\n");
}
else if ( n=='e')
{
printf("vowel\n");
}
else if ( n=='i')
{
printf("vowel\n");
}
else if ( n=='o')
{
printf("vowel\n");
}
else if ( n=='... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104820/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104820/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(){
char c;
scanf("%c",&c);
if((c=='a') || (c=='i') || (c=='u') || (c=='e') || (c=='o')){
printf("vowel\n");
}else{
printf("consonant\n");
}
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104871/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104871/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
char c;
scanf("%c", &c);
if(c == 'a' || c == 'e' || c== 'i' || c == 'o' || c == 'u'){
printf("vowel");
}else{
printf("consonant");
}
putchar('\n');
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104914/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104914/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
int n;
scanf("%d",&n);
printf("%d",n*(1+n%2));
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_104958/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_104958/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(){
int n;
scanf("%d", &n);
if(n%2==0){
printf("%d", n);
}
else{
n = n*2;
printf("%d", n);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105007/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105007/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <stdlib.h>
int main()
{
int n;
scanf("%d",&n);
if(n%2==0)
printf("%d\n",n);
else
printf("%d\n",n*2);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105058/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105058/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main() {
long int N;
scanf("%ld", &N);
if(N%2) {
printf("%ld\n", 2*N);
} else {
printf("%ld\n", N);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105100/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105100/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define ll long long
#define rep(i,l,r)for(ll i=(l);i<(r);i++)
#define max(p,q)((p)>(q)?(p):(q))
#define min(p,q)((p)<(q)?(p):(q))
int main(){
ll n;
scanf("%lld",&n);
printf("%lld",n%2==0?n:n*2);
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105151/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105151/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main() {
int n;
scanf("%d", &n);
if (n%2 == 0) {
printf("%d\n", n);
}
else {
printf("%d\n", n*2);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105195/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105195/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int han;
scanf("%d",&han);
if(han%2 == 0){
printf("%d",han);
}else{
printf("%d",han*2);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105238/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105238/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void) {
int N;
int ans;
scanf("%d", &N);
if (N % 2 != 0)
ans = 2 * N;
else ans = N;
printf("%d", ans);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105281/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105281/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int N;
scanf("%d", &N);
if(N%2 == 0){
printf("%d",N);
}else{
printf("%d",N*2);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105339/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105339/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
long long w,h,x,y;
scanf("%lld%lld%lld%lld",&w,&h,&x,&y);
double s=w*h;
s/=2;
if(w==2*x && h==2*y)
printf("%lf 1\n",s);
else
printf("%lf 0\n",s);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105382/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105382/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main()
{
int width;
int height;
int x,y;
scanf("%d",&width);
scanf("%d",&height);
scanf("%d",&x);
scanf("%d",&y);
double max = (double)width* height/2;
printf("%f",max);
printf(" ");
if(x*2 == width && y*2 == height){
printf("%d",1);
}else{
printf("%d",0);
}
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105432/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105432/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main(){
int W, H, x, y;
long double max = 0;
int ans = 0;
scanf("%d%d%d%d", &W, &H, &x, &y);
if(W == (x+x) && H == (y+y)){
ans = 1;
}
/*
if((x == 0 && y == 0) || (x == 0 && y == H) || (x == W && y == 0) || (x == W && y == H)){
// ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105476/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105476/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
int w,h,x,y,r=0;
double s;
scanf("%d%d%d%d",&w,&h,&x,&y);
s=(double)w*h/2;
if(1.0*x/w==0.5&&1.0*y/h==0.5)r=1;
printf("%lf %d",s,r);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105519/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105519/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void) {
long int W, H, x, y;
long double area;
scanf("%ld%ld%ld%ld", &W, &H, &x, &y);
area = (long double)(W * H) / 2;
printf("%Lf ", area);
if (2 * x == W && 2 * y == H)
printf("1\n");
else
printf("0\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105562/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105562/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <limits.h>
#define init(A,B) { int i; for(i=0; i<B; i++) A[i]=0; }
#define P_MAX 1000
#define N_MAX 1000
struct data{ int time; char type; int ID; };
int main(void){
int N;
while(scanf("%d\n",&N), N!=0){
int i, j=0, k, t[4], max=0, presence[P_MAX], time[P_MAX]; struct data dat[N_MAX... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105605/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105605/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
%struct.data = type { i32, ... |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
int main(void){
int n,a[200005];
scanf("%d",&n);
for(int i=0;i<n;i++){
scanf("%d",&a[i]);
}
int k=1;
int breake=0;
for(int i=0;i<n;i++){
if(a[i]==k){k++;}
else{breake++;}
}
if(breake==n){printf("-1");return 0;... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105656/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105656/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <assert.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
long in[2007];
long ev[2007];
long odd[2007];
int main()
{
long a,b,c,d,e,f,g,i,j,k,l,m,n,o,p,q,r,s,t;
scanf("%ld", &t);
whil... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_1057/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_1057/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_addr co... |
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(){
long n,i;
long a[200000];
long now,r;
scanf("%ld", &n);
for (i=0;i<n;i++)
{
scanf("%ld", &a[i]);
}
now = 1;
r = 0;
for (i=0;i<n;i++)
{
if(a[i] == now)
{
now++;
}
else
{
r++;
}
}
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105742/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105742/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
//set many funcs template
//Ver.20190820
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<stdbool.h>
#include<time.h>
#include<assert.h>
#define inf 1072114514
#define llinf 4154118101919364364
#define mod 1000000007
#define pi 3.1415926535897932384
int max(int a,int b){if(a>b){return a;}return b;}
int... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105793/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105793/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
%struct.sd = type { i32, i3... |
#include<stdio.h>
long long MIN(long long a,long long b){return a<b?a:b;}
int main(){
int t;
scanf("%d",&t);
while(t--){
long long n,a[210],d[210],b[210],r=0,i,j,x;
scanf("%lld",&n);
for(i=0;i<n;i++)scanf("%lld",&d[i]);
for(i=0;i<n;i++)scanf("%1lld",&a[i]);
for(i=n;i--;){
x=d[i];
f... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105843/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105843/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
// Your code here!
int n;
scanf("%d",&n);
printf("%d\n",n*n*n);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105887/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105887/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int x;
scanf("%d", &x);
printf("%d\n", x * x * x);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105937/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105937/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{ int i,n,t;
scanf("%d",&n);
printf("%d\n",n*n*n);
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_105980/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_105980/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int x;
scanf("%d", &x);
printf("%d\n", x*x*x);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106022/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106022/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include "stdio.h"
int main(void){
int n;
scanf("%d",&n);
printf("%d\n",n*n*n);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106095/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106095/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106138/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106138/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(){
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106189/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106189/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int x,v;
scanf("%d",&x);
v=x*x*x;
printf("%d\n",v);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106231/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106231/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void) {
// your code goes here
int i;
scanf("%d\n", &i);
printf("%d\n", i*i*i);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106282/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106282/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void)
{
int num;
scanf("%d\n",&num);
printf("%d\n",num*num*num);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106325/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106325/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <math.h>
int main()
{
int x;
scanf("%d",&x);
x=pow(x,3);
printf("%d\n",x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106369/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106369/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int x,i,y;
y=1;
scanf("%d",&x);
for(i=0;i<3;i++)
y=y*x;
printf("%d\n",y);
return(0);
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106411/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106411/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{
int toire, gokiburi;
scanf("%d", &toire);
gokiburi = toire*toire*toire;
printf("%d", gokiburi);
printf("\n" );
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106455/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106455/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{ int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106499/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106499/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <math.h>
int main(void){
int x,y;
scanf("%d",&x);
y = pow(x,3);
printf("%d\n",y);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106541/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106541/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int x;
scanf("%d", &x);
x=x*x*x;
printf("%d\n", x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106585/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106585/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int x;
scanf("%d\n",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106628/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106628/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int n;
scanf("%d",&n);
printf("%d\n",n*n*n);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106671/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106671/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int x, y ;
scanf("%d",&x);
y=x*x*x ;
printf("%d\n",y);
return 0 ;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106714/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106714/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106758/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106758/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int X;
scanf("%d",&X);
printf("%d\n", X*X*X);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106800/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106800/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{ int x;
scanf("%d",&x);
int A=x*x*x;
printf("%d\n",A);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106844/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106844/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int no;
scanf("%d", &no);
printf("%d\n",no*no*no);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106901/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106901/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106945/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106945/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int x;
scanf("%d", &x);
printf("%d\n", x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_106989/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_106989/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main()
{
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107038/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107038/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int x,y;
scanf("%d",&x);
y=x*x*x;
printf("%d\n",y);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107089/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107089/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int x;
scanf("%d", &x);
if (x >= 1 && x <= 100) {
printf("%d\n", x*x*x);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107131/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107131/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
/*
============================================================================
Name : AOJ.c
Author :
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
============================================================================
*/
#include <stdio.h>
int ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107197/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107197/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main (void)
{
int n;
scanf("%d", &n);
printf("%d\n", n * n * n);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107247/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107247/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int a,b;
scanf("%d",&a);
b = a*a*a;
printf("%d\n",b);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107290/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107290/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(){
int x;
scanf ("%d", &x);
printf ("%d\n", x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107333/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107333/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void)
{
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107391/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107391/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107434/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107434/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int x;
scanf("%d\n",&x);
if(x<=100 && 1<=x) {
x = x*x*x;
printf("%d\n",x);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107485/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107485/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107528/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107528/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int x;
scanf("%d",&x);
if(1<=x&&x<=100){
x=x*x*x;
printf("%d\n",x);
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107571/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107571/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d\n",a*a*a);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107621/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107621/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void)
{
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107665/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107665/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107708/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107708/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(){
int x;
scanf("%d" , &x);
printf("%d\n", x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107751/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107751/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int a;
scanf("%d",&a);
printf("%d\n",a*a*a);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107795/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107795/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
// Here your code !
int a=0;
scanf("%d",&a);
printf("%d\n",a*a*a);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107838/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107838/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int x;
scanf("%d",&x);
int y = x*x*x;
printf("%d\n",y);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107881/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107881/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
int x,ans;
scanf("%d",&x);
ans=x*x*x;
printf("%d\n",ans);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107924/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107924/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void){
int x,y;
scanf("%d",&x);
y=x*x*x;
printf("%d\n",y);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_107968/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_107968/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <string.h>
int main(){
int n,i,s;
int fre[100000];
memset(fre,0,sizeof(fre));
scanf("%d",&n);
while(n--){
scanf("%d",&s);
fre[s-1]++;
}
for(i=0;i<100000;i++)if(fre[i]%2)break;
if(i==100000)printf("Agasa\n");
else printf("Conan\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_10801/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_10801/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_addr ... |
#include <stdio.h>
int main(void){
// Here your code !
int x;
scanf("%d",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108060/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108060/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void)
{
int x;
scanf("%d",&x);
x=x*x*x;
printf("%d\n",x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108103/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108103/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
#include <stdlib.h>
int main(void) {
char input[10];
fgets(input, sizeof(input), stdin);
int x = atoi(input);
printf("%d\n", x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108154/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108154/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@stdin = external local_unn... |
#include<stdio.h>
#include <math.h>
int main(){
int x,y,z;
scanf("%d",&x);
y=3;
z = pow(x, y);
printf("%d%s",z,"\n");
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108204/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108204/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(){
int x;
scanf("%d", &x);
printf("%d\n", x*x*x);
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108248/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108248/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(void)
{
int x;
scanf("%d", &x);
x = x * x * x;
printf("%d\n", x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108299/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108299/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int x;
scanf("%d\n",&x);
if(1 <= x && x <= 100)
x=x*x*x;
printf("%d\n",x);
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108341/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108341/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(void){
int x;
scanf("%d\n",&x);
printf("%d\n",x*x*x);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108392/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108392/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(){
int x;
scanf("%d",&x);
int y=x*x*x;
printf("%d\n",y);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108435/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108435/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(int argc, char *argv[]){
int x;
scanf("%d", &x);
printf("%d\n", x*x*x);
return(0);
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108479/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108479/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main()
{
int num;
scanf("%d",&num);
printf("%d\n",num*num*num);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108529/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108529/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include<stdio.h>
int main(){
int A,B;
scanf("%d", &A);
B=A*A*A;
printf("%d\n", B);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108572/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108572/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
#include <stdio.h>
int main(int argc, const char * argv[]) {
int x;
scanf("%d",&x);
x=x*x*x;
printf("%d\n",x);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_108615/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_108615/source.c"
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
@.str = private unnamed_add... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.