結果

問題 No.513 宝探し2
ユーザー dangodango
提出日時 2023-07-06 21:52:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 136 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 87,036 KB
実行使用メモリ 95,260 KB
平均クエリ数 2.92
最終ジャッジ日時 2023-09-27 22:50:38
合計ジャッジ時間 3,169 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
87,200 KB
testcase_01 AC 83 ms
87,244 KB
testcase_02 AC 85 ms
87,320 KB
testcase_03 AC 82 ms
86,956 KB
testcase_04 AC 88 ms
87,512 KB
testcase_05 AC 84 ms
87,548 KB
testcase_06 AC 84 ms
86,664 KB
testcase_07 AC 84 ms
87,456 KB
testcase_08 RE -
testcase_09 AC 86 ms
87,360 KB
testcase_10 AC 84 ms
87,276 KB
testcase_11 AC 83 ms
87,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print(0, 0, flush=True)
d = int(input())
print(0, d, flush=True)
e = int(input())
e -= d
print((d + e) // 2,  (d - e) // 2, flush=True)
0