結果

問題 No.2174 3 O'clock Easy
ユーザー rlangevinrlangevin
提出日時 2022-12-30 05:51:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 60,684 KB
最終ジャッジ日時 2024-11-25 03:49:04
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,488 KB
testcase_01 AC 38 ms
53,964 KB
testcase_02 AC 44 ms
59,036 KB
testcase_03 AC 38 ms
52,016 KB
testcase_04 AC 37 ms
53,428 KB
testcase_05 AC 38 ms
52,372 KB
testcase_06 AC 39 ms
52,476 KB
testcase_07 AC 41 ms
58,840 KB
testcase_08 AC 44 ms
60,684 KB
testcase_09 AC 44 ms
59,788 KB
testcase_10 AC 44 ms
59,540 KB
testcase_11 AC 43 ms
58,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = 0
for i in range(1, N + 1):
    if i % 3 == 1:
        ans += i
    elif i % 3 == 2:
        ans += i * i
    else:
        ans += i ** 3
print(ans)
0