結果

問題 No.1936 Rational Approximation
ユーザー rin204rin204
提出日時 2022-05-13 21:39:56
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 45 bytes
コンパイル時間 265 ms
使用メモリ 75,864 KB
最終ジャッジ日時 2023-02-21 13:36:33
合計ジャッジ時間 2,585 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 85 ms
75,760 KB
testcase_01 AC 85 ms
75,468 KB
testcase_02 AC 87 ms
75,808 KB
testcase_03 AC 85 ms
75,760 KB
testcase_04 AC 84 ms
75,744 KB
testcase_05 AC 84 ms
75,688 KB
testcase_06 AC 83 ms
75,712 KB
testcase_07 AC 85 ms
75,732 KB
testcase_08 AC 87 ms
75,536 KB
testcase_09 AC 88 ms
75,712 KB
testcase_10 AC 85 ms
75,864 KB
testcase_11 AC 85 ms
75,692 KB
testcase_12 AC 84 ms
75,532 KB
testcase_13 AC 84 ms
75,428 KB
testcase_14 AC 84 ms
75,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q = map(int, input().split())
print(p + q)
0