結果

問題 No.480 合計
ユーザー ChipppppChippppp
提出日時 2021-02-19 21:16:00
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 32 bytes
コンパイル時間 1,282 ms
コンパイル使用メモリ 86,660 KB
実行使用メモリ 71,088 KB
最終ジャッジ日時 2023-10-14 23:37:57
合計ジャッジ時間 4,452 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,920 KB
testcase_01 AC 68 ms
70,760 KB
testcase_02 AC 68 ms
70,772 KB
testcase_03 AC 68 ms
70,688 KB
testcase_04 AC 68 ms
70,876 KB
testcase_05 AC 69 ms
71,012 KB
testcase_06 AC 68 ms
70,924 KB
testcase_07 AC 68 ms
70,916 KB
testcase_08 AC 78 ms
70,728 KB
testcase_09 AC 68 ms
70,924 KB
testcase_10 AC 68 ms
70,728 KB
testcase_11 AC 68 ms
70,640 KB
testcase_12 AC 66 ms
70,980 KB
testcase_13 AC 66 ms
70,900 KB
testcase_14 AC 66 ms
70,752 KB
testcase_15 AC 66 ms
71,008 KB
testcase_16 AC 78 ms
70,772 KB
testcase_17 AC 70 ms
71,088 KB
testcase_18 AC 69 ms
70,828 KB
testcase_19 AC 70 ms
70,732 KB
testcase_20 AC 68 ms
70,768 KB
testcase_21 AC 67 ms
70,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input());print(n*(n+1)//2)
0