結果

問題 No.513 宝探し2
ユーザー htkbhtkb
提出日時 2018-05-20 15:40:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,264 KB
平均クエリ数 2.67
最終ジャッジ日時 2024-07-17 01:44:07
合計ジャッジ時間 2,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
26,840 KB
testcase_01 AC 61 ms
26,712 KB
testcase_02 AC 62 ms
27,224 KB
testcase_03 AC 61 ms
27,224 KB
testcase_04 AC 64 ms
27,264 KB
testcase_05 AC 68 ms
27,096 KB
testcase_06 AC 65 ms
27,224 KB
testcase_07 AC 62 ms
27,096 KB
testcase_08 AC 62 ms
27,096 KB
testcase_09 AC 64 ms
27,096 KB
testcase_10 AC 63 ms
26,840 KB
testcase_11 AC 61 ms
26,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print(0, 0)
dist = int(input())
x, y = dist, 0
if dist > 0:
    print(x, y)
    dist = int(input())
    if dist > 0:
        x -= dist//2
        y = dist//2
        print(x, y)
        input()
exit()
0