結果

問題 No.376 立方体のN等分 (2)
ユーザー 👑 testestesttestestest
提出日時 2016-06-10 02:15:35
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 21,632 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 09:24:16
合計ジャッジ時間 4,797 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 126 ms
5,248 KB
testcase_03 AC 104 ms
5,248 KB
testcase_04 AC 801 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 25 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 126 ms
5,248 KB
testcase_13 AC 102 ms
5,248 KB
testcase_14 AC 161 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 28 ms
5,248 KB
testcase_17 AC 77 ms
5,248 KB
testcase_18 WA -
testcase_19 AC 111 ms
5,248 KB
testcase_20 WA -
testcase_21 AC 30 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 31 ms
5,248 KB
testcase_24 AC 39 ms
5,248 KB
testcase_25 AC 7 ms
5,248 KB
testcase_26 AC 33 ms
5,248 KB
testcase_27 WA -
testcase_28 AC 3 ms
5,248 KB
testcase_29 WA -
testcase_30 AC 155 ms
5,248 KB
testcase_31 WA -
testcase_32 AC 2 ms
5,248 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 149 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:16: warning: return type defaults to ‘int’ [-Wimplicit-int]
    1 | long n,s,i=5e4;main(j){scanf("%ld",&n);for(s=n;n%i|n/i%j<1?s=n%i|(j=i+j+n/i/j-3)>s?s:j,j=sqrt(n/--i)+2,i>1:--j;);s=!printf("%ld %ld",s,n-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 n,s,i=5e4;main(j){scanf("%ld",&n);for(s=n;n%i|n/i%j<1?s=n%i|(j=i+j+n/i/j-3)>s?s:j,j=sqrt(n/--i)+2,i>1:--j;);s=!printf("%ld %ld",s,n-1);}
      |                        ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
  +++ |+#include <stdio.h>
    1 | long n,s,i=5e4;main(j){scanf("%ld",&n);for(s=n;n%i|n/i%j<1?s=n%i|(j=i+j+n/i/j-3)>s?s:j,j=sqrt(n/--i)+2,i>1:--j;);s=!printf("%ld %ld",s,n-1);}
main.c:1:24: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
    1 | long n,s,i=5e4;main(j){scanf("%ld",&n);for(s=n;n%i|n/i%j<1?s=n%i|(j=i+j+n/i/j-3)>s?s:j,j=sqrt(n/--i)+2,i>1:--j;);s=!printf("%ld %ld",s,n-1);}
      |                        ^~~~~
main.c:1:24: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:1:90: warning: implicit declaration of function ‘sqrt’ [-Wimplicit-function-declaration]
    1 | long n,s,i=5e4;main(j){scanf("%ld",&n);for(s=n;n%i|n/i%j<1?s=n%i|(j=i+j+n/i/j-3)>s?s:j,j=sqrt(n/--i)+2,i>1:--j;);s=!printf("%ld %ld",s,n-1);}
      |                                                                                          ^~~~
main.c:1:1: note: include ‘<math.h>’ or provide a declaration of ‘sqrt’
  +++ |+#include <math.h>
    1 | long n,s,i=5e4;main(j){scanf("%ld",&n);for(s=n;n%i|n/i%j<1?s=n%i|(j=i+j+n/i/j-3)>s?s:j,j=sqrt(n/--i)+2,i>1:--j;);s=!printf("%ld %ld",s,n-1);}
main.c:1:90: warning: incompatible implicit declaration of built-in function ‘sqrt’ [-Wbu

ソースコード

diff #

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