結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | nebukuro09 |
提出日時 | 2016-10-30 16:38:41 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 180 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-03 19:50:53 |
合計ジャッジ時間 | 1,929 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,812 KB |
testcase_01 | AC | 11 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 11 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,940 KB |
testcase_05 | AC | 11 ms
6,940 KB |
testcase_06 | AC | 12 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 19 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 20 ms
6,940 KB |
testcase_24 | AC | 12 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | AC | 60 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | AC | 54 ms
6,940 KB |
testcase_29 | AC | 79 ms
6,944 KB |
testcase_30 | AC | 59 ms
6,944 KB |
testcase_31 | AC | 45 ms
6,940 KB |
testcase_32 | AC | 79 ms
6,944 KB |
testcase_33 | WA | - |
ソースコード
N = input() L = N p = [] i = 2 while i*i <= N: while N%i == 0: p.append(i) N /= i i += 1 if N > 1: p.append(N) p += [1, 1] print p[0]+p[1]+p[2]-3, L-1