結果

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

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 82 ms
75,420 KB
testcase_01 AC 83 ms
75,648 KB
testcase_02 AC 82 ms
75,716 KB
testcase_03 AC 83 ms
75,732 KB
testcase_04 AC 82 ms
75,748 KB
testcase_05 AC 83 ms
75,480 KB
testcase_06 AC 83 ms
75,696 KB
testcase_07 AC 83 ms
75,908 KB
testcase_08 AC 82 ms
75,788 KB
testcase_09 AC 83 ms
75,832 KB
testcase_10 AC 83 ms
75,780 KB
testcase_11 AC 83 ms
75,628 KB
testcase_12 AC 82 ms
75,412 KB
testcase_13 AC 83 ms
75,840 KB
testcase_14 AC 85 ms
75,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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