結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー nidosinonidosino
提出日時 2017-05-25 22:28:03
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
RE  
実行時間 -
コード長 319 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 11,804 KB
実行使用メモリ 10,132 KB
最終ジャッジ日時 2023-10-19 23:21:36
合計ジャッジ時間 612 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

print(str(A + B) + " " + S)
0