結果

問題 No.1149 色塗りゲーム
ユーザー chielochielo
提出日時 2020-08-07 21:34:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 71,024 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 04:18:15
合計ジャッジ時間 9,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
69,412 KB
testcase_01 AC 91 ms
69,296 KB
testcase_02 AC 91 ms
69,040 KB
testcase_03 AC 91 ms
68,812 KB
testcase_04 AC 91 ms
69,456 KB
testcase_05 AC 91 ms
69,204 KB
testcase_06 AC 91 ms
69,808 KB
testcase_07 AC 92 ms
69,976 KB
testcase_08 AC 92 ms
69,128 KB
testcase_09 AC 89 ms
69,560 KB
testcase_10 AC 91 ms
69,604 KB
testcase_11 AC 92 ms
70,108 KB
testcase_12 AC 92 ms
69,260 KB
testcase_13 AC 94 ms
70,040 KB
testcase_14 AC 93 ms
69,048 KB
testcase_15 AC 95 ms
70,244 KB
testcase_16 AC 95 ms
69,072 KB
testcase_17 AC 96 ms
69,572 KB
testcase_18 AC 95 ms
68,888 KB
testcase_19 AC 95 ms
69,464 KB
testcase_20 AC 97 ms
70,336 KB
testcase_21 AC 97 ms
69,700 KB
testcase_22 AC 96 ms
70,116 KB
testcase_23 AC 96 ms
70,208 KB
testcase_24 AC 97 ms
69,532 KB
testcase_25 AC 98 ms
68,972 KB
testcase_26 AC 97 ms
68,928 KB
testcase_27 AC 97 ms
69,268 KB
testcase_28 AC 96 ms
69,340 KB
testcase_29 AC 99 ms
69,076 KB
testcase_30 AC 146 ms
69,196 KB
testcase_31 AC 140 ms
70,664 KB
testcase_32 AC 140 ms
69,048 KB
testcase_33 AC 145 ms
69,872 KB
testcase_34 AC 151 ms
69,408 KB
testcase_35 AC 143 ms
69,860 KB
testcase_36 AC 153 ms
69,772 KB
testcase_37 AC 156 ms
68,956 KB
testcase_38 AC 149 ms
70,588 KB
testcase_39 AC 156 ms
70,304 KB
testcase_40 AC 163 ms
69,200 KB
testcase_41 AC 163 ms
70,080 KB
testcase_42 AC 159 ms
70,352 KB
testcase_43 AC 162 ms
69,712 KB
testcase_44 AC 171 ms
71,024 KB
testcase_45 AC 172 ms
69,800 KB
testcase_46 AC 169 ms
70,052 KB
testcase_47 AC 177 ms
69,872 KB
testcase_48 AC 180 ms
69,048 KB
testcase_49 AC 185 ms
69,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdout

n = int(input())

def ask(k, x):
    print(k, x)
    stdout.flush()
    t = int(input())
    if t == 3:
        return (t, *map(int, input().split()))
    return (t,)

if n % 2 == 0:
    t, *last = ask(2, n // 2)
else:
    t, *last = ask(1, (n + 1) // 2)

while t == 3:
    k, x = last
    if k == 1:
        t, *last = ask(1, n - x + 1)
    elif k == 2:
        x += 1
        t, *last = ask(2, n - x + 1)
0