結果

問題 No.1737 One to N
ユーザー ysys
提出日時 2022-03-07 01:21:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 87,132 KB
実行使用メモリ 76,024 KB
最終ジャッジ日時 2023-09-28 17:43:13
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
75,500 KB
testcase_01 AC 73 ms
71,328 KB
testcase_02 AC 76 ms
75,848 KB
testcase_03 AC 75 ms
71,368 KB
testcase_04 AC 77 ms
75,744 KB
testcase_05 AC 80 ms
75,680 KB
testcase_06 AC 83 ms
75,756 KB
testcase_07 AC 81 ms
76,024 KB
testcase_08 AC 77 ms
75,812 KB
testcase_09 AC 77 ms
75,792 KB
testcase_10 AC 79 ms
75,640 KB
testcase_11 AC 77 ms
75,648 KB
testcase_12 AC 76 ms
75,680 KB
testcase_13 AC 79 ms
75,748 KB
testcase_14 AC 79 ms
75,712 KB
testcase_15 AC 80 ms
75,748 KB
testcase_16 AC 78 ms
75,916 KB
testcase_17 AC 77 ms
75,676 KB
testcase_18 AC 78 ms
75,788 KB
testcase_19 AC 78 ms
75,788 KB
testcase_20 AC 77 ms
75,680 KB
testcase_21 AC 79 ms
75,712 KB
testcase_22 AC 76 ms
75,912 KB
testcase_23 AC 80 ms
75,676 KB
testcase_24 AC 78 ms
75,716 KB
testcase_25 AC 79 ms
75,856 KB
testcase_26 AC 76 ms
75,920 KB
testcase_27 AC 74 ms
71,232 KB
testcase_28 AC 79 ms
75,784 KB
testcase_29 AC 73 ms
71,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = 0
M = N
for i in range(2, N + 1):
  if M % i == 0:
    while M % i == 0:
      M //= i
      ans += i
print(ans)
0