結果

問題 No.1149 色塗りゲーム
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-04 02:15:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 71,024 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 11:12:41
合計ジャッジ時間 8,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
69,120 KB
testcase_01 AC 90 ms
69,852 KB
testcase_02 AC 89 ms
69,832 KB
testcase_03 AC 88 ms
68,980 KB
testcase_04 AC 89 ms
69,256 KB
testcase_05 AC 89 ms
69,152 KB
testcase_06 AC 92 ms
68,552 KB
testcase_07 AC 91 ms
69,304 KB
testcase_08 AC 88 ms
69,036 KB
testcase_09 AC 90 ms
68,760 KB
testcase_10 AC 91 ms
69,412 KB
testcase_11 AC 89 ms
69,880 KB
testcase_12 AC 91 ms
68,836 KB
testcase_13 AC 89 ms
70,428 KB
testcase_14 AC 92 ms
69,532 KB
testcase_15 AC 93 ms
70,040 KB
testcase_16 AC 93 ms
68,820 KB
testcase_17 AC 93 ms
69,144 KB
testcase_18 AC 92 ms
69,888 KB
testcase_19 AC 93 ms
69,344 KB
testcase_20 AC 94 ms
69,428 KB
testcase_21 AC 93 ms
69,120 KB
testcase_22 AC 92 ms
68,900 KB
testcase_23 AC 94 ms
69,712 KB
testcase_24 AC 95 ms
68,412 KB
testcase_25 AC 94 ms
68,692 KB
testcase_26 AC 94 ms
69,648 KB
testcase_27 AC 96 ms
69,684 KB
testcase_28 AC 96 ms
68,856 KB
testcase_29 AC 97 ms
70,140 KB
testcase_30 AC 145 ms
71,024 KB
testcase_31 AC 135 ms
68,912 KB
testcase_32 AC 142 ms
69,920 KB
testcase_33 AC 143 ms
70,292 KB
testcase_34 AC 148 ms
70,528 KB
testcase_35 AC 142 ms
69,484 KB
testcase_36 AC 153 ms
69,760 KB
testcase_37 AC 155 ms
70,552 KB
testcase_38 AC 148 ms
68,876 KB
testcase_39 AC 153 ms
69,280 KB
testcase_40 AC 159 ms
69,904 KB
testcase_41 AC 156 ms
69,440 KB
testcase_42 AC 157 ms
70,608 KB
testcase_43 AC 155 ms
69,500 KB
testcase_44 AC 168 ms
68,688 KB
testcase_45 AC 164 ms
69,932 KB
testcase_46 AC 167 ms
70,636 KB
testcase_47 AC 176 ms
68,836 KB
testcase_48 AC 173 ms
68,972 KB
testcase_49 AC 180 ms
70,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n%2 == 0:
    print(2, n//2, flush=True)
else:
    print(1, (n+1)//2, flush=True)
while True:
    t = int(input())
    if t == 0 or t == 1:
        exit()
    elif t == 2:
        k, x = map(int, input().split())
        exit()
    else:
        k, x = map(int, input().split())
        if k == 1:
            print(1, n+1-x, flush=True)
        else:
            print(2, n+1-(x+1), flush=True)
0