結果

問題 No.480 合計
ユーザー inosshinossh
提出日時 2023-01-13 09:54:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 86 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 87,156 KB
実行使用メモリ 71,508 KB
最終ジャッジ日時 2023-08-25 18:23:22
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
70,988 KB
testcase_01 AC 62 ms
71,508 KB
testcase_02 AC 63 ms
71,088 KB
testcase_03 AC 63 ms
71,340 KB
testcase_04 AC 63 ms
71,412 KB
testcase_05 AC 66 ms
71,356 KB
testcase_06 AC 66 ms
71,456 KB
testcase_07 AC 70 ms
71,244 KB
testcase_08 AC 61 ms
71,308 KB
testcase_09 AC 63 ms
71,440 KB
testcase_10 AC 65 ms
71,408 KB
testcase_11 AC 64 ms
71,460 KB
testcase_12 AC 63 ms
71,308 KB
testcase_13 AC 65 ms
71,092 KB
testcase_14 AC 64 ms
71,292 KB
testcase_15 AC 62 ms
71,240 KB
testcase_16 AC 68 ms
71,244 KB
testcase_17 AC 63 ms
71,288 KB
testcase_18 AC 61 ms
71,492 KB
testcase_19 AC 65 ms
71,392 KB
testcase_20 AC 61 ms
70,984 KB
testcase_21 AC 63 ms
71,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

result = 0
for i in range(1,N+1):
    result += i
    
print(result)
0