結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー eijiroueijirou
提出日時 2020-11-27 17:53:21
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 58 bytes
コンパイル時間 1,705 ms
コンパイル使用メモリ 86,820 KB
実行使用メモリ 71,344 KB
最終ジャッジ日時 2023-10-01 04:14:02
合計ジャッジ時間 1,283 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,344 KB
testcase_01 AC 72 ms
71,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
s = input()
print(a+b, s)
0