結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー uni_pythonuni_python
提出日時 2020-04-03 23:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 203 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 51,712 KB
最終ジャッジ日時 2024-07-03 06:35:22
合計ジャッジ時間 592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    a,b=MI()
    s=input()
    print(a+b,s)
    


main()
0