結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | tatumi |
提出日時 | 2018-07-13 19:27:58 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 662 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-09 05:03:58 |
合計ジャッジ時間 | 678 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
# 標準入力から一行分を読み出し、文字列として格納する。 first = input() # 読み込んだ文字列をスペースで分割する split_first = first.split() # それぞれをint型に変換する 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) print("Hello World!")