結果

問題 No.480 合計
ユーザー satorysatory
提出日時 2017-04-16 09:53:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-12-14 09:21:52
合計ジャッジ時間 1,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 40 ms
51,456 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 41 ms
51,456 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 40 ms
51,744 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 40 ms
51,584 KB
testcase_13 AC 41 ms
51,712 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 40 ms
51,456 KB
testcase_16 AC 40 ms
51,712 KB
testcase_17 AC 40 ms
51,712 KB
testcase_18 AC 39 ms
51,712 KB
testcase_19 AC 40 ms
51,712 KB
testcase_20 AC 40 ms
51,712 KB
testcase_21 AC 40 ms
51,712 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