結果

問題 No.2174 3 O'clock Easy
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-12-29 16:35:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 59,268 KB
最終ジャッジ日時 2024-05-03 15:52:49
合計ジャッジ時間 1,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,616 KB
testcase_01 AC 33 ms
52,740 KB
testcase_02 AC 35 ms
58,164 KB
testcase_03 AC 32 ms
53,072 KB
testcase_04 AC 32 ms
53,444 KB
testcase_05 AC 32 ms
52,852 KB
testcase_06 AC 31 ms
51,948 KB
testcase_07 AC 35 ms
58,548 KB
testcase_08 AC 36 ms
58,172 KB
testcase_09 AC 36 ms
58,400 KB
testcase_10 AC 37 ms
58,180 KB
testcase_11 AC 40 ms
59,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=0
for i in range(int(input())):
 a+=(i+1)**(i%3+1)
print(a)
0