結果

問題 No.480 合計
ユーザー satorysatory
提出日時 2017-04-16 09:53:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 52,804 KB
最終ジャッジ日時 2024-05-08 07:23:22
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,484 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 37 ms
52,796 KB
testcase_03 AC 37 ms
52,680 KB
testcase_04 AC 37 ms
52,556 KB
testcase_05 AC 36 ms
52,036 KB
testcase_06 AC 38 ms
52,336 KB
testcase_07 AC 37 ms
52,744 KB
testcase_08 AC 38 ms
52,804 KB
testcase_09 AC 38 ms
51,680 KB
testcase_10 AC 38 ms
52,468 KB
testcase_11 AC 37 ms
52,388 KB
testcase_12 AC 38 ms
52,380 KB
testcase_13 AC 38 ms
52,484 KB
testcase_14 AC 38 ms
52,324 KB
testcase_15 AC 37 ms
52,404 KB
testcase_16 AC 37 ms
51,880 KB
testcase_17 AC 37 ms
52,196 KB
testcase_18 AC 37 ms
52,104 KB
testcase_19 AC 37 ms
52,336 KB
testcase_20 AC 38 ms
52,316 KB
testcase_21 AC 37 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8

# 標準入力から一行分を読み出し、文字列として格納する。
first = input()

# 読み込んだ文字列をスペースで分割する
#split_first = first.split()

# それぞれをint型に変換する
N = int(first)
#A = int(split_first[0])
#B = int(split_first[1])

# 慣れてくると この一行でよい
# A, B = map(int, input().split())

# 参考: リストを読む際はlist()で覆ってやらないといけない
# L = list(map(int, input().split()))

#2行目を読み込む
#S = input()

# 標準出力に書き出す。
# カンマで区切るとスペースで分割してくれるので楽です。
#print(A + B, S)

sum_ = 0
for i in range(N):
    sum_ += i+1

print (sum_)
0