Source_Code stringlengths 69 484k | IR_Original stringlengths 2.05k 17.9M |
|---|---|
#include <stdio.h>
int main()
{
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
puts((a<b && b<c) ? "Yes":"No");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196598/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196598/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, c;
scanf("%d %d %d", &a, &b, &c);
if (a < b && b < c)
printf("Yes\n");
else
printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196640/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196640/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;
int b;
int c;
scanf("%d %d %d", &a, &b, &c);
if ((a < b) && (b < c)) {
printf("Yes\n");
}
else {
printf("No\n");
}
return (0);
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196684/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196684/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,c;
scanf("%d %d %d",&a,&b,&c);
if(a<b)
{
if(b<c)
{
printf("Yes\n");
}
else
{
printf("No\n");
}
}
else
{
printf("No\n");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196727/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196727/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,c;
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
if(a<b&&b<c){
printf("Yes\n");
}else{
printf("No\n");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196770/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196770/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,c;
scanf("%d%d%d",&a,&b,&c);
if(a<b && b<c){
printf("Yes\n");
}
else{
printf("No\n");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196813/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196813/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,c;
scanf("%d" "%d" "%d",&a,&b,&c);
if(a<b&&b<c)
{
printf("Yes\n");
}
else
{
printf("No\n");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196886/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196886/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b && b < c)
printf("Yes\n");
else
printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196936/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196936/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,c;
scanf("%d %d %d",&a,&b,&c);
if(a<b && b<c)printf("Yes\n");
else printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_196987/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_196987/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b && b < c){
printf("Yes\n");
}
else{
printf("No\n");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197029/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197029/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,c;
scanf("%d %d %d",&a,&b,&c);
(a < b) && (b < c) ? printf("Yes\n") : printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197072/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197072/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,c;
scanf("%d%d%d",&a,&b,&c);
if(a<b && b<c)
printf("Yes\n");
else printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197115/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197115/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;
int b;
int c;
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
if (a < b && b < c) {
printf("Yes\n");
} else {
printf("No\n");
} return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197159/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197159/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,c;
scanf("%d%d%d",&a,&b,&c);
if(a < b && b < c) printf("Yes\n");
else printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197201/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197201/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, c;
scanf("%d %d %d", &a, &b, &c);
if (a < b && b < c){
puts("Yes");
}
else {
puts("No");
}
return (0);
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197252/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197252/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,c;
scanf("%d %d %d",&a,&b,&c);
if(a<b&&b<c){
printf("Yes\n");
}else{
printf("No\n");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197296/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197296/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, c;
scanf("%d %d %d",&a, &b, &c);
if(a < b && b < c) printf("Yes\n");
else printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197339/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197339/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,c;
scanf("%d %d %d",&a ,&b ,&c);
if(a < b && b < c){
puts("Yes");
}else {
puts("No");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197382/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197382/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b && b < c) {
printf("Yes");
} else {
printf("No");
}
printf("\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197432/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197432/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 n1, n2, n3;
scanf("%d", &n1);
scanf("%d", &n2);
scanf("%d", &n3);
if (n1 < n2 && n2 < n3)
printf("Yes\n");
else
printf("No\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197476/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197476/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,c;
scanf("%d %d %d",&a,&b,&c);
if(a<b&&b<c){
printf("Yes\n");
}else{
printf("No\n");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197526/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197526/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,c;
scanf("%d %d %d", &a, &b, &c);
if((a<b) && (c>b))printf("Yes");
else{printf("No");}
printf("\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197577/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197577/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,c;
scanf("%d", &a);
scanf("%d", &b);
scanf("%d", &c);
if(a<b&&b<c){
puts("Yes");
}
else {
puts("No");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197627/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197627/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a<b&&b<c) puts("Yes");
else puts("No");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197678/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197678/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, c;
scanf("%d %d %d", &a, &b, &c);
printf("%s", ((a < b) && (b < c))? "Yes\n" : "No\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197720/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197720/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b && b < c){
printf("Yes\n");
}
else{
printf("No\n");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197764/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197764/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b && b < c)printf("Yes\n");
else printf("No\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197807/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197807/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b && b < c)
printf("Yes\n");
else
printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197858/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197858/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,c;
scanf("%d %d %d", &a,&b,&c);
if (a < b && b < c)
printf("Yes\n");
else
printf("No\n");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197900/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197900/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,c;
scanf("%d %d %d",&a,&b,&c);
if (a<b && b<c){
printf ("Yes\n");
}else{
printf ("No\n");
}
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_197944/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_197944/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, c;
scanf("%d%d%d", &a, &b, &c);
if (a < b&&b < c)printf("Yes\n");
else printf("No\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198000/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198000/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, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b) {
if(b < c) printf("Yes\n");
else printf("No\n");
}
else printf("No\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198044/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198044/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,c;
scanf("%d %d %d",&a,&b,&c);
if(a<b && b<c){
printf("Yes\n");
}else{
printf("No\n");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198088/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198088/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,c;
scanf("%d%d%d",&a,&b,&c);
if(c>b&&b>a)
printf("Yes\n");
else
printf("No\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198138/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198138/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,c;
scanf("%d%d%d",&a,&b,&c);
if(a<b&&b<c)
{
printf("Yes\n");
}
else printf("No\n");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198181/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198181/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 =0;
int b =0;
int c =0;
scanf("%d %d %d", &a , &b , &c);
if(a<b && b<c){
printf("Yes\n");
}
else {
printf("No\n");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198231/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198231/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, c;
scanf("%d %d %d", &a, &b, &c);
if( a < b && b < c ){
printf("Yes\n");
}
else{
printf("No\n");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198282/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198282/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 a,b,c;
scanf("%d %d %d",&a,&b,&c);
if(a < b && b < c){
printf("Yes\n");
}else{
printf("No\n");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198332/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198332/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>
void range_determine(int a, int b, int c){
if (a < b && b < c)
printf("Yes\n");
else
printf("No\n");
}
int main(void){
int a = 0;
int b = 0;
int c = 0;
scanf("%d %d %d", &a, &b, &c);
range_determine(a, b, c);
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198383/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198383/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.2 = private unnamed_a... |
#include<stdio.h>
int main(){
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if(a < b && b < c){
puts("Yes");
}
else{
puts("No");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198433/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198433/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, c;
scanf("%d%d%d", &a, &b, &c);
if (a < b && b < c) {
printf("Yes\n");
} else {
printf("No\n");
}
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198477/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198477/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 count[210]={0},i,j,k,a,b,c,sum,tmp,n,total,x,y,p,q,l1,l2;
char name[21][12],numbers[22][210][12],tmpch[20];
scanf("%d",&n);
k=0;
while(n--){
scanf(" %s",&tmpch);
for(i=0;i<k;i++){
if(strcmp(tmpch,name[i])==0){
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_19852/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_19852/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()
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if ((a < b) && (b < c))
puts("Yes");
else
puts("No");
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198570/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198570/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,c;
scanf("%d %d %d",&a,&b,&c);
if(a<b && b<c){
printf("Yes\n");
}
else{
printf("No\n");
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198613/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198613/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[2][101]={},i,j,n,t=0;
scanf("%d",&n);
for(i=0;i<2;i++)for(j=1;j<=n;j++){scanf("%d",&A[i][j]);A[i][j]+=A[i][j-1];}
for(i=1;i<=n;i++){j=A[0][i]+A[1][n]-A[1][i-1];t=j<t?t:j;}
printf("%d",t);
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198657/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198657/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
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<stdbool.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 min(int a,int b){if(a<b){return a;}return b;}
int ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_19870/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_19870/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) {
int n;
scanf("%d", &n);
int a[2][n];
int i, j;
for (i = 0; i < 2; i++)
for (j = 0; j < n; j++)
scanf("%d", &a[i][j]);
int ans = a[0][0];
int k;
for (k = 0; k < n; k++) {
ans += a[1][k];
}
for (k = 1; k < n; k++) {
int t = 0;
int l;
for (l = 0; l < k; l++)
t ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198743/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198743/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>
typedef struct {
int key, id;
} data;
void merge_sort(data x[], int n)
{
static data y[100001] = {};
if (n <= 1) return;
merge_sort(&(x[0]), n/2);
merge_sort(&(x[n/2]), (n+1)/2);
int i, p, q;
for (i = 0, p = 0, q = n/2; i < n; i++) {
if (p >= n/2) y[i] = x[q++];
else if (q >= n) y[i] =... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198787/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198787/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 <string.h>
#include <stdlib.h>
#include <stdint.h> // uint64_t
#define max(a,b) ((a) > (b) ? (a) : (b))
#define min(a,b) ((a) > (b) ? (b) : (a))
#define BUF_SIZE 30
// size: specify sizeof(str)
int get_str(char *str, int size) {
if(!fgets(str, size, stdin)) return -1;
return 0;
}
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198837/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198837/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.ufind = type { i32,... |
#include <stdio.h>
#define max(a, b) (((a) > (b)) ? (a) : (b))
int main(void) {
int i;
int q;
scanf("%d", &q);
while (q--) {
int n;
int cnt;
scanf("%d", &n);
cnt = 0;
while (n > 9) {
int max = 0;
for (i = 10; i <= 1000000; i *= 10)
max = max(max, n / i * (n % i));
n = max;
cnt++;
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198880/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198880/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<math.h>
#include<string.h>
#include<stdbool.h>
#include<assert.h>
typedef long long ll;
typedef long double ld;
#define rep(i,l,r)for(ll i=(l);i<(r);i++)
#define repp(i,l,r,k)for(ll i=(l);i<(r);i+=(k))
#define rrep(i,l,r)for(ll i=(l);i>=(r);i--)
#define INF (1LL<<60)
#defin... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198923/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198923/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.graph_info = type {... |
#include<stdio.h>
#include<stdlib.h>
#define INF 10000
int **adj;//2D array of cost between each adj
int *cost;
int *status;
int n;//the number of vertices
void init(void);
void prim(void);
int sumCost(void);
int main(void)
{
int i,j;//counter
scanf("%d",&n);
init();
for(i=0;i<n;i++)
for(j=0;j<n;j++)
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_198967/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_198967/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>
#define N 100
int main(){
int i, j, n, min, minj, total=0;
int A[N][N], flag[N], t[N];
scanf("%d", &n);
for(i = 0; i < n ; i++){
flag[i] = 0;
t[i] = 2001;
}
t[0] = 0;
for(i = 0; i < n; i++){
for(j = 0; j < n; j++){
scanf("%d", &A[i][j]);
}
}
for(... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199038/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199038/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>
#define INF 10000000
#define NIL -1
#define BLACK 1
#define WHITE 0
void prim(void);
int n,a[101][101],w=0,d[101],pi[101],color[101];
int main()
{
int i,j;
scanf("%d",&n);
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&a[i][j]);
}
}
prim();
for(i=0;i<n;i++){
if... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199102/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199102/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"
@w = dso_local local_unname... |
#include<stdio.h>
#define INF 10000
#define WHITE 1
#define BLACK 0
#define GRAY 2
int p[101];
int d[101];
int color[101];
int num[101][101];
void prim(int);
int main(){
int n;
int i,j;
scanf("%d",&n);
for(i=1;i<=n;i++){
for(j=1;j<=n;j++){
scanf("%d",&num[i][j]);
}
}
prim(n);
re... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199168/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199168/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>
#define INFTY 1000000
#define M -1
#define WHITE 0
#define GRAY 1
#define BLACK 2
#define N 100
int prim(void);
int n,A[N][N];
int main()
{
int i,j;
scanf("%d",&n);
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&A[i][j]);
if(A[i][j]==M) A[i][j]=INFTY;
}
}
printf("%d... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199225/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199225/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>
#define INF 2047
#define WHITE 0
#define BLACK 1
int n,a[100][100],A[100],C[100];
int Prim(int);
int main(){
int i,j,s=0;
scanf("%d",&n);
for(i=0;i<n;i++)
A[i]=INF;
for(i=0;i<n;i++)
for(j=0;j<n;j++)
scanf("%d",&a[i][j]);
Prim(0);
for(i=0;i<n;i++)
s+=A[i];
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199269/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199269/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 MAX 100
#define WHITE 0
#define GRAY 1
#define BLACK 2
#define INFTY (1<<21)
int n,M[MAX][MAX];
int prim(){
int u,minv,i,v,sum=0;
int d[MAX],p[MAX],color[MAX];
for(i=0;i<n;i++){
d[i]=INFTY;
p[i]=-1;
color[i]=WHITE;
}
d[0]=0;
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199311/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199311/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"
@n = dso_local global i32 0... |
#include<stdio.h>
#define zyougen 150
#define Big 1000000
int i, j, num, A[zyougen][zyougen]={0};
int back[zyougen], min[zyougen], used[zyougen];
int prim(){
int dir, next, Sum = 0;
min[1] = 1;
while(1){
dir = Big;
next = -1;
for(i=1; i<=num; i++){
if (dir > min[i] && used[i] != -1) {
next = i... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199355/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199355/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 local_unname... |
#include<stdio.h>
int main()
{
int i,j,n,cnt=0;
int Gg[101][101],clr[101],d[101],pi[101],mincst,ii;
scanf("%d",&n);
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&Gg[i][j]);
}
}
for(i=0;i<n;i++){
clr[i]=0;
pi[i]=-1;
d[i]=2001;
}
d[0]=0;
while(1){
mincst=2001;
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199399/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199399/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>
static const int INFTY = (1<<21);
#define MAX 100
#define WHITE 0
#define GRAY 1
#define BLACK 2
int n,m[MAX][MAX];
int prim(void);
int main()
{
int i,j,a,e;
scanf("%d",&n);
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&a);
if(a==-1) m[i][j]=INFTY;
else m[i][j]... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199441/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199441/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>
#define MAX 1000
int prim();
int n;
int A[MAX][MAX];
int main(){
int i, j;
int answer;
scanf("%d", &n);
for(i = 0; i < n; i++){
for(j = 0; j < n; j++){
scanf("%d", &A[i][j]);
}
}
answer = prim();
printf("%d\n", answer);
return 0;
}
int prim(){
int i, j;
i... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199485/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199485/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>
#define WHITE 0
#define GRAY 1
#define BLACK 2
int INFTY = (1<<21);
int M[100][100];
int pr(int);
int main(){
int i,j,n,m;
scanf("%d",&n);
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&m);
M[i][j]=(m==-1)?INFTY:m;
}
}
printf("%d\n",pr(n));
return 0;
}
int pr(int n){
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199528/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199528/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"
@INFTY = dso_local local_un... |
#include <stdio.h>
#define N 100
#define INFTY 100000000
#define Free 0
#define Full 1
int n, M[N][N];
int prim(){
int u,minv;
int d[N],p[N],color[N];
for(int i=0; i<n; i++){
d[i]=INFTY;
p[i]=-1;
color[i]=Free;
}
d[0]=0;
while (1) {
minv=INFTY;
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199571/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199571/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"
@n = dso_local global i32 0... |
#include<stdio.h>
#include<limits.h>
#include<math.h>
#define MAX 500
#define INF (1 << 21)
int cost[MAX][MAX]; // cost[u][v]は辺e=(u,v)のコスト(存在しない場合はINF)
int mincost[MAX]; // 集合Xからの辺の最小コスト
int used[MAX]; // 頂点iがXに含まれているか
int V; // 頂点数
int solve() {
int i, v, u;
int res = 0;
for(i=1;i<=V;i++) {
mincost... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199614/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199614/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"
@V = dso_local local_unname... |
#include<stdio.h>
int funk(int);
int A[100][100],B[100],C[100];
int main() {
int x,i,j;
scanf("%d",&x);
for(i = 0; i < x; i++) {
for(j = 0; j < x; j++) {
scanf("%d",&A[i][j]);
}
}
printf("%d\n",funk(x));
return 0;
}
int funk(int x) {
int i,j,k = 1,min,minp,sum = 0;
B[0] = 0;
C[0]... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199658/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199658/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... |
//Minimum Spanning Tree
//2019-01-27
//Ebitani Akira
#include <stdio.h>
#include <stdlib.h>
#define N 128
#define MAX 100
#define INF 2500
void Count(void);
int n;
int A[N][N];
int main(){
int i, j;
int count;
scanf("%d", &n);
if(n < 1 || n > MAX){
printf("頂点の数が適当ではありません。\n");
exit(1);
}
for(... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199700/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199700/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>
#define INF (int)2e9
#define MAX 100
int A[MAX][MAX];
int prim(int n)
{
int u,minv;
int sum = 0;
int mV[MAX],P[MAX],Type[MAX];
for ( int i = 0; i < n; ++i) {
mV[i] = INF;
P[i] = -1;
Type[i] = 0;
}
mV[0] = 0;
while(1) {
minv = INF;
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199751/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199751/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 local_unname... |
#include<stdio.h>
static const int MAX = 500;
static const int INFTY=(1<<21);
int main( ){
int i,j,n,u,adj,k;
int G[MAX][MAX];
int d[MAX],p[MAX],v[MAX];
int min,sum;
scanf("%d",&n);
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&k);
G[i][j] = (k ==-1)?INFTY:k;
}
}
for(i=0;i<n;i... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199801/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199801/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>
#define max 100
#define a 0
#define b 1
#define c 2
int inf=(1<<21);
int n;
int m[max][max];
int P(){
int u, min, i, v, sum=0;
int d[max], p[max], ch[max];
for(i=0 ; i<n ; i++){
d[i]=inf;
p[i]=-1;
ch[i]=a;
}
d[0]=0;
while(1){
min=inf;
u=-1;
for(i=0 ; i<n ; i++){
if(min... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199852/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199852/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"
@inf = dso_local local_unna... |
#include <stdio.h>
#define MAX 100
#define INFTY 100000000
#define WHITE 0
#define BLACK 2
#define GRAY 1
int n, M[MAX][MAX];
int prim(){
int u,minv;
int d[MAX],p[MAX],color[MAX];
for(int i=0; i<n; i++){
d[i]=INFTY;
p[i]=-1;
color[i]=WHITE;
}
d[0]=0;
whil... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199902/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199902/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"
@n = dso_local global i32 0... |
#include <stdio.h>
int main() {
int n, m;
scanf("%d%d", &n, &m);
printf("%d\n", (n - 1) * (m - 1));
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_199946/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_199946/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 int n;
scanf("%lld",&n);
long long int t=n%10;
if(t==0)
printf("%lld",n);
if(t<=5 && t!=0)
printf("%lld",(n-t));
if(t>5)
printf("%lld",(n+10-t));
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_19999/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_19999/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>
#include<string.h>
int main(){
long long a,x;
scanf("%lli",&a);
x=a%10;
if(x==0){
printf("%lli",a);
return 0;
}
else if(x>=5){
printf("%lli",a+(10-x));
return 0;
}
else if(x<5){
printf("%lli",a-x);
return 0;
}
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_20003/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_20003/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) {
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", (a - 1) * (b - 1));
return 0;
}
| ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200080/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200080/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, m,t;
scanf("%d%d",&n,&m);
t=(n-1)*(m-1);
printf("\n%d\n",t);
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200123/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200123/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,m;
scanf("%d %d",&n,&m);
printf("%d\n",(n-1)*(m-1));
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200174/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200174/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 h,w;
scanf("%d%d",&h,&w);
int a[h][w],i,j,ans[h*w][4],counter=0;//long n=0;
for(i=0;i<h;i++){
for(j=0;j<w;j++){
scanf("%d",&a[i][j]);
// n+=(a[i][j]%2);
}
}
//printf("%ld\n",n);
for(i=h-1;i>0;i--){
for(j=0;j<w;j++){
if(a[i][j]!=0){
while(a[i][j]%2==1){
a[... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200217/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200217/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 <string.h>
int main (void){
int H,W,gyou=1,mode=0;
int a[501][501];
int kaisu=0;
int ans[250000][4];
scanf("%d %d\n",&H,&W );
for (int i = 1; i <= H; i++) {
for (int j = 1; j <= W; j++) {
scanf("%d",&a[i][j]);
a[i][j]=a[i]... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200268/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200268/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 i;
int N;
int flag = 0;
int check;
int a[100100];
scanf("%d", &N);
for (i = 0;i < N;i++) {
scanf("%d", &a[i]);
}
check = 0;
for (i = 0; i < N; i++) {
check = check ^ a[i];
}
if (check == 0) {
flag = 1;
}
if (flag == 1) {
printf("Yes");
}
e... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200310/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200310/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>
#define num 100000
#define true 1
#define false 0
void isPrime();
int isCheck(int i,int j,int m,int a,int b);
int isbigger(int num1,int num2);
int is1(int i,int j);
int N;
int *prime;
int main(){
prime = (int *)malloc(num);
isPrime();
int m,a,b;
int i,j,x,y;
while(scan... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200354/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200354/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"
@prime = dso_local local_un... |
#include <stdio.h>
int search(int k, int *a, int n){
int l=0,r=n,m;
while(l<r){
m=(l+r)/2;
if(a[m]<k) r=m;
else l=m+1;
}
return l;
}
int main(){
int n;scanf("%d",&n);
int g[n],c=0,a,j;
for(int i=0;i<n;i++){
scanf("%d",&a);
j = search(a,g,c);
g[ j<c? j: c++ ] = a;
}
printf(... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200404/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200404/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... |
// cd Desktop/Atcoder
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define rep(i,n) for(i=0;i<(n);i++)
#define ll long long
#define ull unsigned long long
#define MOD 1000000007
long double to_deg(long double r) {
return r * 180.0 / (atan(1.0) * 4.0);
}
int main(){
long double... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200448/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200448/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)
{
double a,b,x;
double theta,tangent;
scanf("%lf%lf%lf",&a,&b,&x);
if(x>=((a*a*b)/2)){
tangent = (2*b/a - 2*x/a/a/a);
theta = atan(tangent)*(180/M_PI);
}
else{
tangent = (2*x/a/b/b);
theta = 90 - atan(tangent)*(180/M_PI);
}
printf("%lf",theta);
ret... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200491/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200491/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... |
#define M_PI 3.14159265359
#include <math.h>
#include <stdio.h>
int main(void){
// Your code here!
int a,b,x;
scanf("%d %d %d\n", &a, &b, &x);
if(a*a*b/2 >= x)
printf("%.7lf\n", atan((double)a*b*b/(2*x))*180/M_PI);
else
printf("%.7lf\n", atan(2*((double)a*a*b-x)/(a*a*a))*180/M_PI);... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200534/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200534/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,j;
char a[10][10],b[10][10];
for(i=0;i<8;i++)
scanf("%s",a[i]);
for(j=0;j<8;j++)
for(i=0;i<8;i++)
b[i][7-j]=a[j][i];
printf("90\n");
for(j=0;j<8;j++){
for(i=0;i<8;i++)
printf("%c",b[j][i]);
printf("\n");
}
for(j=0;j<8;j++)
for(i=0;i<8;i++)
b[7-j][7-i]=a[j][... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200585/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200585/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 Con(int n, int k, int s){
if(s < 0) return 0;
if(k > n) return 0;
if(k == 0) return s == 0 ? 1 : 0;
return Con(n - 1, k - 1, s - n) + Con(n - 1, k, s);
}
int main (){
int n, k, s;
while (1) {
scanf("%d %d %d", &n, &k, &s);
if(n == 0 && k == 0 && s == 0)
return 0;
printf("%d\n", ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200642/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200642/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>
#define slmt 101 /*slmt:手札文字数限界*/
#define winp 3 /*勝利ポイント*/
#define drowp 1 /*引き分けポイント*/
int main(void){
char tarou[slmt], hanako[slmt]; /*tarou:太郎手札, hanako:花子手札*/
int times, x; /*times:ゲーム回数, x:ループ変数*/
int twin=0, hwin=0; /*twin:太郎勝利回数, hwin:花子勝利回数... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200686/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200686/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>
#include <ctype.h>
#define MAX_DATA (1000)
#define MAX_LEN (100)
/*win_p??¬??????0xXY (X:???????????????Y:??±?????????) 1???WIN 0:LOSE */
int func(char *taro_dt_p,char *hana_dt_p, int *win_p)
{
int wk;
int rtn;
int i;
int flg;
int max;
if (strlen(taro_dt_p) > strlen(hana... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200729/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200729/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;
scanf("%d", &n);
int i;
int result;
int a_score = 0;
int b_score = 0;
char a_card[100];
char b_card[100];
for (i = 0; i < n; i++)
{
scanf("%s %s", a_card, b_card);
result = strcmp(a_card, b_card);
if (result == 0)
{
a_score += 1;
b_sco... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200772/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200772/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(void) {
// your code goes here
long long int i,j,n,k,len,z,ans,x;
char a[1005];
scanf("%s",a);
scanf("%lld",&k);
long long int val[30];
long long int max=0;
for(i=0;i<26;i++)
{
scanf("%lld",&n);
if(n>max)
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_20083/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_20083/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>
#include<string.h>
int main(){
int i,n,taro=0,hanako=0;
char w_taro[101],w_hanako[101];
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%s %s",w_taro,w_hanako);
if(strcmp(w_taro,w_hanako)>0) taro+=3;
if(strcmp(w_taro,w_hanako)==0){taro++; hanako++;}
if(strcmp(w_taro,w_hanako)<0) ha... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200880/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200880/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... |
//
// main.c
// ITP1_9_C
//
// Created by k16031kk on 2018/05/27.
// Copyright © 2018年 AIT. All rights reserved.
//
#include <stdio.h>
#include <string.h>
int main(int argc, const char * argv[]) {
// insert code here...
int n, t_point=0, h_point=0;
char taro[100];
char hanako[100];
scanf(... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200923/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200923/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>
int main(void) {
int a, b;
int n; scanf("%d", &n);
a = 0, b = 0;
while(n--) {
int res;
char s1[101];
char s2[101];
scanf(" %s", s1);
scanf(" %s", s2);
res = strcmp(s1, s2);
if(res > 0) ... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_200967/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_200967/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(void)
{
char s1[100], s2[100];
int taro=0, hanako=0, i, turn;
scanf("%d", &turn);
for(i=0; i<turn; i++){
scanf("%s %s", s1, s2);
if ( strcmp(s1, s2) == 0 ){
taro++;
hanako++;
}
else if ( strc... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_201016/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_201016/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,j,k,n,m,p;
scanf("%d %d",&p,&n);
long int a[n],b[p];
for(i=0;i<p;i++)
b[i]=0;
for(i=0;i<n;i++)
scanf("%ld",&a[i]);
for(i=0;i<n;i++)
{
if(b[a[i]%p]==1)
break;
else
b[a[i]%p]=1;
}
if(i<n)
printf("%d",i+1);
else
printf("-1");
return 0;
} | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_20106/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_20106/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>
#include<string.h>
int main()
{
int n,i,T=0,H=0,f;
char t[101],h[101];
scanf("%d\n",&n);
for(i=0;i<n;i++)
{
scanf("%s%s",t,h);
f=strcmp(t,h);
if(f==0){T+=1;H+=1;}
else if(f>0)T+=3;
else H+=3;
}
printf("%d %d\n",T,H);
return 0;
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_201102/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_201102/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;
int score[2]={0,0};
int i,j,first=0;
char taro[100],hanako[100];
scanf("%d",&n);
for(j=0;j<n;j++)
{
for(i=0;;i++)
{
scanf("%c",&taro[i]);
if(first==0)
{
i--;
first++;
}
if(taro[i]==' ') break;
}
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_201153/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_201153/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 J, O, I, ans = 0;;
char c = getchar();
while(c == 'J' || c == 'O' || c == 'I'){
J = O = I = 0;
while(c == 'J'){
J++;
c = getchar();
}
while(c == 'O'){
O++;
c = getchar();
}
while(c == 'I'){
I++;
c = getchar();
}
... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_201218/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_201218/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... |
#if 0
cat <<EOF >mistaken-paste
#endif
// thanks for @rsk0315_h4x
#pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
#include <time.h>
#define BIG 2000000007
#def... | ; ModuleID = '/data/TheStack_IR/OJ_Samples/Collated/C/Source_201283/source.c'
source_filename = "/data/TheStack_IR/OJ_Samples/Collated/C/Source_201283/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.hwll = type { i64, ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.