結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | satory |
提出日時 | 2017-04-16 09:52:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 733 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-19 03:58:28 |
合計ジャッジ時間 | 779 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
# 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_)