結果

問題 No.513 宝探し2
ユーザー 👑 rin204rin204
提出日時 2022-01-20 01:07:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 70,444 KB
平均クエリ数 2.75
最終ジャッジ日時 2024-07-17 03:06:50
合計ジャッジ時間 1,827 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,628 KB
testcase_01 AC 56 ms
69,532 KB
testcase_02 AC 57 ms
68,412 KB
testcase_03 AC 59 ms
69,232 KB
testcase_04 AC 57 ms
70,084 KB
testcase_05 AC 57 ms
70,336 KB
testcase_06 AC 57 ms
69,356 KB
testcase_07 AC 57 ms
68,436 KB
testcase_08 AC 56 ms
69,364 KB
testcase_09 AC 57 ms
70,204 KB
testcase_10 AC 56 ms
69,912 KB
testcase_11 AC 58 ms
70,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print(0, 0, flush = True)
a = int(input())
if a == 0:
    exit()
print(0, 100000, flush = True)
b = int(input())
if b == 0:
    exit()
x = (a + b - 100000) // 2
y = a - x
print(x, y)
0