結果

問題 No.480 合計
ユーザー pypypymipypypymi
提出日時 2022-02-17 14:45:26
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 55 bytes
コンパイル時間 1,380 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 76,600 KB
最終ジャッジ日時 2023-09-11 17:42:13
合計ジャッジ時間 4,087 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
76,292 KB
testcase_01 AC 74 ms
76,344 KB
testcase_02 AC 76 ms
76,104 KB
testcase_03 AC 75 ms
76,296 KB
testcase_04 AC 76 ms
76,284 KB
testcase_05 AC 76 ms
76,292 KB
testcase_06 AC 76 ms
76,320 KB
testcase_07 AC 76 ms
76,196 KB
testcase_08 AC 76 ms
76,600 KB
testcase_09 AC 73 ms
76,380 KB
testcase_10 AC 75 ms
76,572 KB
testcase_11 AC 75 ms
76,348 KB
testcase_12 AC 74 ms
76,396 KB
testcase_13 AC 75 ms
76,080 KB
testcase_14 AC 76 ms
76,212 KB
testcase_15 AC 73 ms
76,320 KB
testcase_16 AC 74 ms
76,316 KB
testcase_17 AC 75 ms
76,364 KB
testcase_18 AC 74 ms
76,508 KB
testcase_19 AC 75 ms
76,088 KB
testcase_20 AC 74 ms
76,188 KB
testcase_21 AC 74 ms
76,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print(sum([i for i in xrange(1,n+1)]))
0