結果

問題 No.376 立方体のN等分 (2)
ユーザー cielciel
提出日時 2020-02-08 19:39:15
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,580 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 11,216 ms
コンパイル使用メモリ 295,976 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 19:52:48
合計ジャッジ時間 22,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 97 ms
6,940 KB
testcase_03 AC 96 ms
6,940 KB
testcase_04 AC 111 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 6 ms
6,940 KB
testcase_09 AC 25 ms
6,940 KB
testcase_10 AC 115 ms
6,940 KB
testcase_11 AC 51 ms
6,940 KB
testcase_12 AC 68 ms
6,940 KB
testcase_13 AC 71 ms
6,940 KB
testcase_14 AC 78 ms
6,940 KB
testcase_15 AC 87 ms
6,944 KB
testcase_16 AC 1,353 ms
6,940 KB
testcase_17 AC 97 ms
6,940 KB
testcase_18 AC 100 ms
6,940 KB
testcase_19 AC 103 ms
6,944 KB
testcase_20 AC 105 ms
6,944 KB
testcase_21 AC 1,413 ms
6,944 KB
testcase_22 AC 110 ms
6,940 KB
testcase_23 AC 1,451 ms
6,940 KB
testcase_24 AC 1,321 ms
6,940 KB
testcase_25 AC 114 ms
6,944 KB
testcase_26 AC 1,580 ms
6,940 KB
testcase_27 AC 114 ms
6,944 KB
testcase_28 AC 115 ms
6,944 KB
testcase_29 AC 115 ms
6,940 KB
testcase_30 AC 116 ms
6,944 KB
testcase_31 AC 115 ms
6,940 KB
testcase_32 AC 115 ms
6,944 KB
testcase_33 AC 115 ms
6,940 KB
testcase_34 AC 116 ms
6,940 KB
testcase_35 AC 114 ms
6,940 KB
testcase_36 AC 116 ms
6,940 KB
testcase_37 AC 116 ms
6,940 KB
testcase_38 AC 115 ms
6,944 KB
testcase_39 AC 116 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m=n=gets.not_nil!.to_i64
y=(1_i64..n**0.5).reject{|i|n%i>0}
y.map{|a|y.each{|b|c=a*b;n%c==0&&(m=[m,a+b+n//c-3].min)}}
print m," ",n-1
0