結果

問題 No.312 置換処理
ユーザー dangodango
提出日時 2023-06-15 21:43:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 96 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 87,380 KB
実行使用メモリ 75,852 KB
最終ジャッジ日時 2023-09-06 00:19:39
合計ジャッジ時間 6,622 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
75,472 KB
testcase_01 AC 104 ms
75,476 KB
testcase_02 AC 102 ms
75,476 KB
testcase_03 AC 104 ms
75,584 KB
testcase_04 AC 103 ms
75,580 KB
testcase_05 AC 105 ms
75,468 KB
testcase_06 AC 106 ms
75,616 KB
testcase_07 AC 102 ms
75,484 KB
testcase_08 AC 102 ms
75,560 KB
testcase_09 AC 102 ms
75,676 KB
testcase_10 AC 101 ms
75,584 KB
testcase_11 AC 101 ms
75,636 KB
testcase_12 AC 102 ms
75,632 KB
testcase_13 AC 100 ms
75,528 KB
testcase_14 AC 102 ms
75,580 KB
testcase_15 AC 103 ms
75,612 KB
testcase_16 AC 104 ms
75,536 KB
testcase_17 AC 103 ms
75,824 KB
testcase_18 AC 104 ms
75,340 KB
testcase_19 AC 106 ms
75,468 KB
testcase_20 AC 102 ms
75,852 KB
testcase_21 AC 102 ms
75,524 KB
testcase_22 AC 102 ms
75,600 KB
testcase_23 AC 101 ms
75,608 KB
testcase_24 AC 103 ms
75,500 KB
testcase_25 AC 99 ms
75,596 KB
testcase_26 AC 99 ms
75,520 KB
testcase_27 AC 100 ms
75,696 KB
testcase_28 AC 100 ms
75,388 KB
testcase_29 AC 100 ms
75,604 KB
testcase_30 AC 100 ms
75,472 KB
testcase_31 AC 101 ms
75,532 KB
testcase_32 AC 101 ms
75,756 KB
testcase_33 AC 100 ms
75,644 KB
testcase_34 AC 100 ms
75,344 KB
testcase_35 AC 98 ms
75,500 KB
testcase_36 AC 98 ms
75,644 KB
testcase_37 AC 98 ms
75,608 KB
testcase_38 AC 99 ms
75,460 KB
testcase_39 AC 97 ms
75,588 KB
testcase_40 AC 99 ms
75,500 KB
testcase_41 AC 101 ms
75,528 KB
testcase_42 AC 99 ms
75,604 KB
testcase_43 AC 99 ms
75,596 KB
testcase_44 AC 98 ms
75,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print(([i for i in range(3, 6 ** 8) if N % i < 1] + [N % 2 * N or N // 2])[0])
0