結果

問題 No.514 宝探し3
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-25 22:35:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 199 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 10,704 KB
実行使用メモリ 24,336 KB
平均クエリ数 3.75
最終ジャッジ日時 2023-09-23 16:11:19
合計ジャッジ時間 1,455 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
24,036 KB
testcase_01 AC 37 ms
23,488 KB
testcase_02 AC 37 ms
23,784 KB
testcase_03 AC 36 ms
24,060 KB
testcase_04 AC 37 ms
24,036 KB
testcase_05 AC 36 ms
24,336 KB
testcase_06 AC 34 ms
23,868 KB
testcase_07 AC 36 ms
24,036 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 37 ms
23,576 KB
testcase_11 AC 36 ms
24,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = []
print(0,0)
d.append(int(input()))
print(1000000000,0)
d.append(int(input()))
print(0,1000000000)
d.append(int(input()))

x = (d[0]+d[2]-1000000000)//2
y = (d[0]+d[1]-1000000000)//2

print(x,y)
0