結果

問題 No.1149 色塗りゲーム
ユーザー stngstng
提出日時 2022-09-09 20:57:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 70,888 KB
平均クエリ数 19.88
最終ジャッジ日時 2024-11-25 20:49:12
合計ジャッジ時間 8,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
69,112 KB
testcase_01 AC 92 ms
69,708 KB
testcase_02 AC 93 ms
69,056 KB
testcase_03 AC 93 ms
68,676 KB
testcase_04 AC 93 ms
68,760 KB
testcase_05 AC 93 ms
69,172 KB
testcase_06 AC 94 ms
70,164 KB
testcase_07 AC 93 ms
69,004 KB
testcase_08 AC 94 ms
69,100 KB
testcase_09 AC 94 ms
68,964 KB
testcase_10 AC 94 ms
69,132 KB
testcase_11 AC 90 ms
70,324 KB
testcase_12 AC 91 ms
69,304 KB
testcase_13 AC 90 ms
69,660 KB
testcase_14 AC 88 ms
69,372 KB
testcase_15 AC 89 ms
69,500 KB
testcase_16 AC 90 ms
69,972 KB
testcase_17 AC 92 ms
68,676 KB
testcase_18 AC 92 ms
69,856 KB
testcase_19 AC 92 ms
69,596 KB
testcase_20 AC 94 ms
68,544 KB
testcase_21 AC 96 ms
68,924 KB
testcase_22 AC 94 ms
70,032 KB
testcase_23 AC 94 ms
69,984 KB
testcase_24 AC 95 ms
70,652 KB
testcase_25 AC 94 ms
69,120 KB
testcase_26 AC 95 ms
69,288 KB
testcase_27 AC 97 ms
69,424 KB
testcase_28 AC 96 ms
69,544 KB
testcase_29 AC 97 ms
69,800 KB
testcase_30 AC 139 ms
68,836 KB
testcase_31 AC 134 ms
69,596 KB
testcase_32 AC 138 ms
69,616 KB
testcase_33 AC 135 ms
70,556 KB
testcase_34 AC 144 ms
69,492 KB
testcase_35 AC 136 ms
70,032 KB
testcase_36 AC 144 ms
69,172 KB
testcase_37 AC 150 ms
69,892 KB
testcase_38 AC 148 ms
69,236 KB
testcase_39 AC 144 ms
70,012 KB
testcase_40 AC 157 ms
70,888 KB
testcase_41 AC 150 ms
68,880 KB
testcase_42 AC 159 ms
69,152 KB
testcase_43 AC 151 ms
70,244 KB
testcase_44 AC 159 ms
69,492 KB
testcase_45 AC 160 ms
70,300 KB
testcase_46 AC 165 ms
68,692 KB
testcase_47 AC 168 ms
70,040 KB
testcase_48 AC 174 ms
69,892 KB
testcase_49 AC 176 ms
69,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n <= 2:
    print(n,1)
    t = int(input())
    if t == 0:
        exit()

if n % 2 == 0:
    print(2,n//2)
    n += 1
else:
    print(1,n//2+1)

for i in range(n):
    t = int(input())
    if t == 0 or t == 1:
        exit()
    if t == 2:
        k,x = map(int,input().split())
        exit()
    if t == 3:
        k,x = map(int,input().split())
        if x >= (n+1)//2:
            print(k,x-(n+1)//2)
        else:
            print(k,x+(n+1)//2)
0