結果

問題 No.376 立方体のN等分 (2)
ユーザー testestesttestestest
提出日時 2016-06-05 02:17:40
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 142 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 22,016 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-08 13:55:23
合計ジャッジ時間 4,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 62 ms
5,248 KB
testcase_03 AC 51 ms
5,248 KB
testcase_04 AC 474 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 16 ms
5,248 KB
testcase_10 AC 12 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 64 ms
5,248 KB
testcase_13 AC 102 ms
5,248 KB
testcase_14 AC 147 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 14 ms
5,248 KB
testcase_17 AC 37 ms
5,248 KB
testcase_18 WA -
testcase_19 AC 59 ms
5,248 KB
testcase_20 WA -
testcase_21 AC 15 ms
5,248 KB
testcase_22 AC 94 ms
5,248 KB
testcase_23 AC 15 ms
5,248 KB
testcase_24 AC 19 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 16 ms
5,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 164 ms
5,248 KB
testcase_31 AC 83 ms
5,248 KB
testcase_32 AC 32 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 53 ms
5,248 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 70 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:16: warning: return type defaults to ‘int’ [-Wimplicit-int]
    1 | long m,s,i=5e4;main(j){scanf("%ld",&m);for(s=m;--i;s=m%i|(j=i+j+m/i/j-3)>s?s:j)for(j=sqrt(m/i)+2;m%i<1&&m/i%--j;);s=!printf("%ld %ld",s,m-1);}
      |                ^~~~
main.c: In function ‘main’:
main.c:1:16: warning: type of ‘j’ defaults to ‘int’ [-Wimplicit-int]
main.c:1:24: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
    1 | long m,s,i=5e4;main(j){scanf("%ld",&m);for(s=m;--i;s=m%i|(j=i+j+m/i/j-3)>s?s:j)for(j=sqrt(m/i)+2;m%i<1&&m/i%--j;);s=!printf("%ld %ld",s,m-1);}
      |                        ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
  +++ |+#include <stdio.h>
    1 | long m,s,i=5e4;main(j){scanf("%ld",&m);for(s=m;--i;s=m%i|(j=i+j+m/i/j-3)>s?s:j)for(j=sqrt(m/i)+2;m%i<1&&m/i%--j;);s=!printf("%ld %ld",s,m-1);}
main.c:1:24: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
    1 | long m,s,i=5e4;main(j){scanf("%ld",&m);for(s=m;--i;s=m%i|(j=i+j+m/i/j-3)>s?s:j)for(j=sqrt(m/i)+2;m%i<1&&m/i%--j;);s=!printf("%ld %ld",s,m-1);}
      |                        ^~~~~
main.c:1:24: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:1:86: warning: implicit declaration of function ‘sqrt’ [-Wimplicit-function-declaration]
    1 | long m,s,i=5e4;main(j){scanf("%ld",&m);for(s=m;--i;s=m%i|(j=i+j+m/i/j-3)>s?s:j)for(j=sqrt(m/i)+2;m%i<1&&m/i%--j;);s=!printf("%ld %ld",s,m-1);}
      |                                                                                      ^~~~
main.c:1:1: note: include ‘<math.h>’ or provide a declaration of ‘sqrt’
  +++ |+#include <math.h>
    1 | long m,s,i=5e4;main(j){scanf("%ld",&m);for(s=m;--i;s=m%i|(j=i+j+m/i/j-3)>s?s:j)for(j=sqrt(m/i)+2;m%i<1&&m/i%--j;);s=!printf("%ld %ld",s,m-1);}
main.c:1:86: warning: incompatible implicit declaration of built-in function ‘sqrt’ [-W

ソースコード

diff #

long m,s,i=5e4;main(j){scanf("%ld",&m);for(s=m;--i;s=m%i|(j=i+j+m/i/j-3)>s?s:j)for(j=sqrt(m/i)+2;m%i<1&&m/i%--j;);s=!printf("%ld %ld",s,m-1);}
0