Submission #3609406


Source Code Expand

//set many funcs template
//Ver.20180717
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<stdbool.h>
#include<time.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 zt(int a,int b){return max(a,b)-min(a,b);}
int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
int ceil(int a,int b){if(a%b==0){return a/b;}return (a/b)+1;}
int gcd(int a,int b){int c;while(b!=0){c=a%b;a=b;b=c;}return a;}
int lcm(int a,int b){int c=gcd(a,b);a/=c;return a*b;}
int nCr(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;}
int nHr(int a,int b){return nCr(a+b-1,b);}
int fact(int a){int i,r=1;for(i=1;i<=a;i++){r*=i;}return r;}
int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;}
int dsum(int x){int r=0;while(x){r+=(x%10);x/=10;}return r;}
int dsumb(int x,int b){int r=0;while(x){r+=(x%b);x/=b;}return r;}
int sankaku(int x){return ((1+x)*x)/2;}
long long llmax(long long a,long long b){if(a>b){return a;}return b;}
long long llmin(long long a,long long b){if(a<b){return a;}return b;}
long long llzt(long long a,long long b){return llmax(a,b)-llmin(a,b);}
long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
long long llceil(long long a,long long b){if(a%b==0){return a/b;}return (a/b)+1;}
long long llgcd(long long a,long long b){long long c;while(b!=0){c=a%b;a=b;b=c;}return a;}
long long lllcm(long long a,long long b){long long c=llgcd(a,b);a/=c;return a*b;}
long long llnCr(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;}
long long llnHr(long long a,long long b){return llnCr(a+b-1,b);}
long long llfact(long long a){long long i,r=1;for(i=1;i<=a;i++){r*=i;}return r;}
long long llpow(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=a;}return r;}
long long lldsum(long long x){long long r=0;while(x){r+=(x%10);x/=10;}return r;}
long long lldsumb(long long x,long long b){long long r=0;while(x){r+=(x%b);x/=b;}return r;}
long long llsankaku(long long x){return ((1+x)*x)/2;}
double dbmax(double a,double b){if(a>b){return a;}return b;}
double dbmin(double a,double b){if(a<b){return a;}return b;}
double dbzt(double a,double b){return dbmax(a,b)-dbmin(a,b);}
int sortfncsj(const void *a,const void *b){if(*(int *)a>*(int *)b){return 1;}if(*(int *)a==*(int *)b){return 0;}return -1;}
int sortfnckj(const void *a,const void *b){if(*(int *)a<*(int *)b){return 1;}if(*(int *)a==*(int *)b){return 0;}return -1;}
int llsortfncsj(const void *a,const void *b){if(*(long long *)a>*(long long *)b){return 1;}if(*(long long *)a==*(long long *)b){return 0;}return -1;}
int llsortfnckj(const void *a,const void *b){if(*(long long *)a<*(long long *)b){return 1;}if(*(long long *)a==*(long long *)b){return 0;}return -1;}
int dbsortfncsj(const void *a,const void *b){if(*(double *)a>*(double *)b){return 1;}if(*(double *)a==*(double *)b){return 0;}return -1;}
int dbsortfnckj(const void *a,const void *b){if(*(double *)a<*(double *)b){return 1;}if(*(double *)a==*(double *)b){return 0;}return -1;}
int strsortfncsj(const void *a,const void *b){return strcmp((char *)a,(char *)b);}
int strsortfnckj(const void *a,const void *b){return strcmp((char *)b,(char *)a);}

void shuffledget(int x[],int n){
    srand(time(0));
    int i,b[524288],p,c;
    for(i=0;i<n;i++){
        b[i]=i;
    }
    for(i=n;i>=1;i--){
        p=rand()%i;
        c=b[i-1];b[i-1]=b[p];b[p]=c;
    }
    for(i=0;i<n;i++){
        scanf("%d",&x[b[i]]);
    }
}

int dx4[4]={1,-1,0,0};
int dy4[4]={0,0,1,-1};
int dx8[8]={-1,-1,-1,0,0,1,1,1};
int dy8[8]={-1,0,1,-1,1,-1,0,1};

int search(int x,int a[],int n){
    int st=0,fi=n-1,te;
    while(st<=fi){
        te=(st+fi)/2;
        if(a[te]<x){st=te+1;}else{fi=te-1;}
    }
    return st;
}

typedef struct{
int val;
int node;
}sd;

int sdsortfnc(const void *a,const void *b){
if(((sd*)a)->val < ((sd*)b)->val){return -1;}
if(((sd*)a)->val > ((sd*)b)->val){return 1;}
return 0;
}

long long llsqrt(long long x){
  long long te,st=0,fi=1000000000;
  while(st<=fi){
    te=(st+fi)/2;
    if(te*te==x){return te;}
    if(te*te<x){st=te+1;}
    else{fi=te-1;}
  }
  return -1;
}

int main(void){
    long long i,j,n,m,k,a[524288],b,c,h,w,r=0,l,t;
    double d;
    char s[524288];
    scanf("%lld%lld",&l,&k);
    for(i=1;i<l;i++){
      for(j=i;j<l;j++){
        if(i+j>l){break;}
        w=llsqrt(i*i+j*j+k*k);
        if(w==-1 || i+j+w>l){continue;}
        if(llgcd(llgcd(i,j),w)!=1){continue;}
        r++;
      }
    }
    printf("%lld\n",r);
    return 0;
}

Submission Info

Submission Time
Task D - ほぼピタゴラスの三角形
User physics0523
Language C (GCC 5.4.1)
Score 0
Code Size 4795 Byte
Status WA
Exec Time 5255 ms
Memory 128 KB

Compile Error

./Main.c:16:5: warning: conflicting types for built-in function ‘round’
 int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
     ^
./Main.c:17:5: warning: conflicting types for built-in function ‘ceil’
 int ceil(int a,int b){if(a%b==0){return a/b;}return (a/b)+1;}
     ^
./Main.c:23:5: warning: conflicting types for built-in function ‘pow’
 int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;}
     ^
./Main.c:30:11: warning: conflicting types for built-in function ‘llround’
 long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;}
           ^
./Main.c: In function ‘shuffledget’:
./Main.c:64:9: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d",&x[b[i]]);
         ^
./Main.c: In function ‘main’:
./Main.c:108:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld%lld",&l,&k);
     ^

Judge Result

Set Name small All
Score / Max Score 0 / 60 0 / 140
Status
AC × 16
WA × 119
AC × 16
WA × 119
TLE × 41
Set Name Test Cases
small 00_example_1.txt, 00_example_2.txt, 03_small_00.txt, 03_small_01.txt, 03_small_02.txt, 03_small_03.txt, 03_small_04.txt, 03_small_05.txt, 03_small_06.txt, 03_small_07.txt, 03_small_08.txt, 03_small_09.txt, 03_small_10.txt, 03_small_11.txt, 03_small_12.txt, 03_small_13.txt, 03_small_14.txt, 03_small_15.txt, 03_small_16.txt, 03_small_17.txt, 03_small_18.txt, 03_small_19.txt, 03_small_20.txt, 03_small_21.txt, 03_small_22.txt, 03_small_23.txt, 03_small_24.txt, 03_small_25.txt, 03_small_26.txt, 03_small_27.txt, 03_small_28.txt, 03_small_29.txt, 03_small_30.txt, 03_small_31.txt, 03_small_32.txt, 03_small_33.txt, 03_small_34.txt, 03_small_35.txt, 03_small_36.txt, 03_small_37.txt, 03_small_38.txt, 03_small_39.txt, 03_small_40.txt, 03_small_41.txt, 03_small_42.txt, 03_small_43.txt, 03_small_44.txt, 03_small_45.txt, 03_small_46.txt, 03_small_47.txt, 03_small_48.txt, 03_small_49.txt, 03_small_50.txt, 03_small_51.txt, 03_small_52.txt, 03_small_53.txt, 03_small_54.txt, 03_small_55.txt, 03_small_56.txt, 03_small_57.txt, 03_small_58.txt, 03_small_59.txt, 03_small_60.txt, 03_small_61.txt, 03_small_62.txt, 03_small_63.txt, 03_small_64.txt, 03_small_65.txt, 03_small_66.txt, 03_small_67.txt, 03_small_68.txt, 03_small_69.txt, 03_small_70.txt, 03_small_71.txt, 03_small_72.txt, 03_small_73.txt, 03_small_74.txt, 03_small_75.txt, 03_small_76.txt, 03_small_77.txt, 03_small_78.txt, 03_small_79.txt, 03_small_80.txt, 03_small_81.txt, 03_small_82.txt, 03_small_83.txt, 03_small_84.txt, 03_small_85.txt, 03_small_86.txt, 03_small_87.txt, 03_small_88.txt, 03_small_89.txt, 03_small_90.txt, 03_small_91.txt, 03_small_92.txt, 03_small_93.txt, 03_small_94.txt, 03_small_95.txt, 03_small_96.txt, 03_small_97.txt, 03_small_98.txt, 03_small_99.txt, 05_small_random_1.txt, 05_small_random_10.txt, 05_small_random_11.txt, 05_small_random_12.txt, 05_small_random_13.txt, 05_small_random_14.txt, 05_small_random_15.txt, 05_small_random_16.txt, 05_small_random_17.txt, 05_small_random_18.txt, 05_small_random_19.txt, 05_small_random_2.txt, 05_small_random_20.txt, 05_small_random_21.txt, 05_small_random_22.txt, 05_small_random_23.txt, 05_small_random_24.txt, 05_small_random_25.txt, 05_small_random_26.txt, 05_small_random_27.txt, 05_small_random_28.txt, 05_small_random_29.txt, 05_small_random_3.txt, 05_small_random_30.txt, 05_small_random_4.txt, 05_small_random_5.txt, 05_small_random_6.txt, 05_small_random_7.txt, 05_small_random_8.txt, 05_small_random_9.txt, 08_manual_0.txt, 08_manual_2.txt, 08_manual_3.txt
All 00_example_1.txt, 00_example_2.txt, 03_small_00.txt, 03_small_01.txt, 03_small_02.txt, 03_small_03.txt, 03_small_04.txt, 03_small_05.txt, 03_small_06.txt, 03_small_07.txt, 03_small_08.txt, 03_small_09.txt, 03_small_10.txt, 03_small_11.txt, 03_small_12.txt, 03_small_13.txt, 03_small_14.txt, 03_small_15.txt, 03_small_16.txt, 03_small_17.txt, 03_small_18.txt, 03_small_19.txt, 03_small_20.txt, 03_small_21.txt, 03_small_22.txt, 03_small_23.txt, 03_small_24.txt, 03_small_25.txt, 03_small_26.txt, 03_small_27.txt, 03_small_28.txt, 03_small_29.txt, 03_small_30.txt, 03_small_31.txt, 03_small_32.txt, 03_small_33.txt, 03_small_34.txt, 03_small_35.txt, 03_small_36.txt, 03_small_37.txt, 03_small_38.txt, 03_small_39.txt, 03_small_40.txt, 03_small_41.txt, 03_small_42.txt, 03_small_43.txt, 03_small_44.txt, 03_small_45.txt, 03_small_46.txt, 03_small_47.txt, 03_small_48.txt, 03_small_49.txt, 03_small_50.txt, 03_small_51.txt, 03_small_52.txt, 03_small_53.txt, 03_small_54.txt, 03_small_55.txt, 03_small_56.txt, 03_small_57.txt, 03_small_58.txt, 03_small_59.txt, 03_small_60.txt, 03_small_61.txt, 03_small_62.txt, 03_small_63.txt, 03_small_64.txt, 03_small_65.txt, 03_small_66.txt, 03_small_67.txt, 03_small_68.txt, 03_small_69.txt, 03_small_70.txt, 03_small_71.txt, 03_small_72.txt, 03_small_73.txt, 03_small_74.txt, 03_small_75.txt, 03_small_76.txt, 03_small_77.txt, 03_small_78.txt, 03_small_79.txt, 03_small_80.txt, 03_small_81.txt, 03_small_82.txt, 03_small_83.txt, 03_small_84.txt, 03_small_85.txt, 03_small_86.txt, 03_small_87.txt, 03_small_88.txt, 03_small_89.txt, 03_small_90.txt, 03_small_91.txt, 03_small_92.txt, 03_small_93.txt, 03_small_94.txt, 03_small_95.txt, 03_small_96.txt, 03_small_97.txt, 03_small_98.txt, 03_small_99.txt, 05_small_random_1.txt, 05_small_random_10.txt, 05_small_random_11.txt, 05_small_random_12.txt, 05_small_random_13.txt, 05_small_random_14.txt, 05_small_random_15.txt, 05_small_random_16.txt, 05_small_random_17.txt, 05_small_random_18.txt, 05_small_random_19.txt, 05_small_random_2.txt, 05_small_random_20.txt, 05_small_random_21.txt, 05_small_random_22.txt, 05_small_random_23.txt, 05_small_random_24.txt, 05_small_random_25.txt, 05_small_random_26.txt, 05_small_random_27.txt, 05_small_random_28.txt, 05_small_random_29.txt, 05_small_random_3.txt, 05_small_random_30.txt, 05_small_random_4.txt, 05_small_random_5.txt, 05_small_random_6.txt, 05_small_random_7.txt, 05_small_random_8.txt, 05_small_random_9.txt, 08_manual_0.txt, 08_manual_2.txt, 08_manual_3.txt, 10_max_01.txt, 10_max_02.txt, 10_max_03.txt, 10_max_04.txt, 10_max_05.txt, 10_max_06.txt, 10_max_07.txt, 10_max_08.txt, 10_max_09.txt, 10_max_10.txt, 10_max_41.txt, 10_max_42.txt, 10_max_43.txt, 10_max_44.txt, 10_max_45.txt, 10_max_46.txt, 10_max_47.txt, 10_max_48.txt, 10_max_49.txt, 10_max_50.txt, 11_large_00.txt, 11_large_01.txt, 11_large_02.txt, 11_large_03.txt, 11_large_04.txt, 11_large_05.txt, 11_large_06.txt, 11_large_07.txt, 11_large_08.txt, 11_large_09.txt, 20_manual_1.txt, 20_manual_10.txt, 20_manual_11.txt, 20_manual_12.txt, 20_manual_13.txt, 20_manual_4.txt, 20_manual_5.txt, 20_manual_6.txt, 20_manual_7.txt, 20_manual_8.txt, 20_manual_9.txt
Case Name Status Exec Time Memory
00_example_1.txt AC 1 ms 128 KB
00_example_2.txt WA 1 ms 128 KB
03_small_00.txt WA 1 ms 128 KB
03_small_01.txt WA 4 ms 128 KB
03_small_02.txt WA 13 ms 128 KB
03_small_03.txt WA 2 ms 128 KB
03_small_04.txt AC 1 ms 128 KB
03_small_05.txt WA 10 ms 128 KB
03_small_06.txt WA 1 ms 128 KB
03_small_07.txt WA 11 ms 128 KB
03_small_08.txt WA 1 ms 128 KB
03_small_09.txt WA 5 ms 128 KB
03_small_10.txt WA 6 ms 128 KB
03_small_11.txt WA 3 ms 128 KB
03_small_12.txt WA 1 ms 128 KB
03_small_13.txt WA 10 ms 128 KB
03_small_14.txt WA 8 ms 128 KB
03_small_15.txt WA 6 ms 128 KB
03_small_16.txt WA 13 ms 128 KB
03_small_17.txt WA 13 ms 128 KB
03_small_18.txt WA 3 ms 128 KB
03_small_19.txt WA 7 ms 128 KB
03_small_20.txt WA 11 ms 128 KB
03_small_21.txt WA 6 ms 128 KB
03_small_22.txt WA 4 ms 128 KB
03_small_23.txt WA 15 ms 128 KB
03_small_24.txt WA 13 ms 128 KB
03_small_25.txt WA 8 ms 128 KB
03_small_26.txt WA 1 ms 128 KB
03_small_27.txt WA 11 ms 128 KB
03_small_28.txt WA 4 ms 128 KB
03_small_29.txt WA 1 ms 128 KB
03_small_30.txt WA 6 ms 128 KB
03_small_31.txt WA 9 ms 128 KB
03_small_32.txt WA 1 ms 128 KB
03_small_33.txt WA 9 ms 128 KB
03_small_34.txt WA 14 ms 128 KB
03_small_35.txt WA 13 ms 128 KB
03_small_36.txt AC 8 ms 128 KB
03_small_37.txt WA 8 ms 128 KB
03_small_38.txt WA 2 ms 128 KB
03_small_39.txt WA 2 ms 128 KB
03_small_40.txt WA 9 ms 128 KB
03_small_41.txt WA 8 ms 128 KB
03_small_42.txt WA 15 ms 128 KB
03_small_43.txt WA 8 ms 128 KB
03_small_44.txt WA 1 ms 128 KB
03_small_45.txt WA 16 ms 128 KB
03_small_46.txt WA 15 ms 128 KB
03_small_47.txt WA 9 ms 128 KB
03_small_48.txt WA 8 ms 128 KB
03_small_49.txt WA 5 ms 128 KB
03_small_50.txt WA 2 ms 128 KB
03_small_51.txt WA 13 ms 128 KB
03_small_52.txt WA 5 ms 128 KB
03_small_53.txt WA 6 ms 128 KB
03_small_54.txt WA 14 ms 128 KB
03_small_55.txt AC 11 ms 128 KB
03_small_56.txt WA 3 ms 128 KB
03_small_57.txt WA 6 ms 128 KB
03_small_58.txt WA 6 ms 128 KB
03_small_59.txt WA 14 ms 128 KB
03_small_60.txt WA 11 ms 128 KB
03_small_61.txt WA 8 ms 128 KB
03_small_62.txt WA 3 ms 128 KB
03_small_63.txt WA 8 ms 128 KB
03_small_64.txt AC 1 ms 128 KB
03_small_65.txt AC 6 ms 128 KB
03_small_66.txt WA 1 ms 128 KB
03_small_67.txt WA 5 ms 128 KB
03_small_68.txt WA 4 ms 128 KB
03_small_69.txt WA 16 ms 128 KB
03_small_70.txt WA 1 ms 128 KB
03_small_71.txt WA 9 ms 128 KB
03_small_72.txt WA 2 ms 128 KB
03_small_73.txt WA 4 ms 128 KB
03_small_74.txt WA 15 ms 128 KB
03_small_75.txt WA 15 ms 128 KB
03_small_76.txt AC 5 ms 128 KB
03_small_77.txt WA 1 ms 128 KB
03_small_78.txt AC 2 ms 128 KB
03_small_79.txt WA 14 ms 128 KB
03_small_80.txt WA 10 ms 128 KB
03_small_81.txt WA 10 ms 128 KB
03_small_82.txt WA 4 ms 128 KB
03_small_83.txt WA 1 ms 128 KB
03_small_84.txt WA 3 ms 128 KB
03_small_85.txt WA 9 ms 128 KB
03_small_86.txt WA 11 ms 128 KB
03_small_87.txt WA 1 ms 128 KB
03_small_88.txt WA 1 ms 128 KB
03_small_89.txt WA 7 ms 128 KB
03_small_90.txt WA 13 ms 128 KB
03_small_91.txt WA 13 ms 128 KB
03_small_92.txt WA 6 ms 128 KB
03_small_93.txt WA 9 ms 128 KB
03_small_94.txt WA 2 ms 128 KB
03_small_95.txt WA 9 ms 128 KB
03_small_96.txt WA 5 ms 128 KB
03_small_97.txt WA 4 ms 128 KB
03_small_98.txt WA 11 ms 128 KB
03_small_99.txt AC 3 ms 128 KB
05_small_random_1.txt AC 44 ms 128 KB
05_small_random_10.txt AC 61 ms 128 KB
05_small_random_11.txt WA 83 ms 128 KB
05_small_random_12.txt WA 1610 ms 128 KB
05_small_random_13.txt WA 273 ms 128 KB
05_small_random_14.txt WA 814 ms 128 KB
05_small_random_15.txt WA 678 ms 128 KB
05_small_random_16.txt WA 1095 ms 128 KB
05_small_random_17.txt WA 1356 ms 128 KB
05_small_random_18.txt WA 761 ms 128 KB
05_small_random_19.txt WA 749 ms 128 KB
05_small_random_2.txt WA 17 ms 128 KB
05_small_random_20.txt WA 88 ms 128 KB
05_small_random_21.txt WA 1598 ms 128 KB
05_small_random_22.txt AC 1287 ms 128 KB
05_small_random_23.txt WA 401 ms 128 KB
05_small_random_24.txt AC 699 ms 128 KB
05_small_random_25.txt WA 824 ms 128 KB
05_small_random_26.txt WA 133 ms 128 KB
05_small_random_27.txt WA 6 ms 128 KB
05_small_random_28.txt WA 512 ms 128 KB
05_small_random_29.txt WA 1204 ms 128 KB
05_small_random_3.txt WA 457 ms 128 KB
05_small_random_30.txt WA 357 ms 128 KB
05_small_random_4.txt WA 1437 ms 128 KB
05_small_random_5.txt WA 563 ms 128 KB
05_small_random_6.txt AC 211 ms 128 KB
05_small_random_7.txt WA 131 ms 128 KB
05_small_random_8.txt WA 797 ms 128 KB
05_small_random_9.txt WA 608 ms 128 KB
08_manual_0.txt WA 1649 ms 128 KB
08_manual_2.txt AC 16 ms 128 KB
08_manual_3.txt AC 1650 ms 128 KB
10_max_01.txt TLE 5255 ms 128 KB
10_max_02.txt TLE 5255 ms 128 KB
10_max_03.txt TLE 5255 ms 128 KB
10_max_04.txt TLE 5255 ms 128 KB
10_max_05.txt TLE 5255 ms 128 KB
10_max_06.txt TLE 5255 ms 128 KB
10_max_07.txt TLE 5255 ms 128 KB
10_max_08.txt TLE 5255 ms 128 KB
10_max_09.txt TLE 5255 ms 128 KB
10_max_10.txt TLE 5255 ms 128 KB
10_max_41.txt TLE 5255 ms 128 KB
10_max_42.txt TLE 5255 ms 128 KB
10_max_43.txt TLE 5255 ms 128 KB
10_max_44.txt TLE 5255 ms 128 KB
10_max_45.txt TLE 5255 ms 128 KB
10_max_46.txt TLE 5255 ms 128 KB
10_max_47.txt TLE 5255 ms 128 KB
10_max_48.txt TLE 5255 ms 128 KB
10_max_49.txt TLE 5255 ms 128 KB
10_max_50.txt TLE 5255 ms 128 KB
11_large_00.txt TLE 5255 ms 128 KB
11_large_01.txt TLE 5255 ms 128 KB
11_large_02.txt TLE 5255 ms 128 KB
11_large_03.txt TLE 5255 ms 128 KB
11_large_04.txt TLE 5255 ms 128 KB
11_large_05.txt TLE 5255 ms 128 KB
11_large_06.txt TLE 5255 ms 128 KB
11_large_07.txt TLE 5255 ms 128 KB
11_large_08.txt TLE 5255 ms 128 KB
11_large_09.txt TLE 5255 ms 128 KB
20_manual_1.txt TLE 5255 ms 128 KB
20_manual_10.txt TLE 5255 ms 128 KB
20_manual_11.txt TLE 5255 ms 128 KB
20_manual_12.txt TLE 5255 ms 128 KB
20_manual_13.txt TLE 5255 ms 128 KB
20_manual_4.txt TLE 5255 ms 128 KB
20_manual_5.txt TLE 5255 ms 128 KB
20_manual_6.txt TLE 5255 ms 128 KB
20_manual_7.txt TLE 5255 ms 128 KB
20_manual_8.txt TLE 5255 ms 128 KB
20_manual_9.txt TLE 5255 ms 128 KB