結果

問題 No.1149 色塗りゲーム
ユーザー stngstng
提出日時 2022-09-09 20:57:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,472 KB
平均クエリ数 19.88
最終ジャッジ日時 2024-05-04 10:31:07
合計ジャッジ時間 7,954 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
68,576 KB
testcase_01 AC 79 ms
68,480 KB
testcase_02 AC 78 ms
68,960 KB
testcase_03 AC 78 ms
68,576 KB
testcase_04 AC 79 ms
68,864 KB
testcase_05 AC 81 ms
68,832 KB
testcase_06 AC 78 ms
68,448 KB
testcase_07 AC 79 ms
68,832 KB
testcase_08 AC 79 ms
68,576 KB
testcase_09 AC 82 ms
68,576 KB
testcase_10 AC 83 ms
68,728 KB
testcase_11 AC 81 ms
68,832 KB
testcase_12 AC 85 ms
68,576 KB
testcase_13 AC 82 ms
68,576 KB
testcase_14 AC 81 ms
68,320 KB
testcase_15 AC 81 ms
68,832 KB
testcase_16 AC 83 ms
68,192 KB
testcase_17 AC 84 ms
68,960 KB
testcase_18 AC 85 ms
68,704 KB
testcase_19 AC 88 ms
68,696 KB
testcase_20 AC 83 ms
68,832 KB
testcase_21 AC 85 ms
68,576 KB
testcase_22 AC 84 ms
68,960 KB
testcase_23 AC 84 ms
69,088 KB
testcase_24 AC 87 ms
68,832 KB
testcase_25 AC 88 ms
68,960 KB
testcase_26 AC 88 ms
68,704 KB
testcase_27 AC 84 ms
68,832 KB
testcase_28 AC 82 ms
68,960 KB
testcase_29 AC 86 ms
68,960 KB
testcase_30 AC 124 ms
68,960 KB
testcase_31 AC 121 ms
68,832 KB
testcase_32 AC 124 ms
69,216 KB
testcase_33 AC 125 ms
68,832 KB
testcase_34 AC 135 ms
69,240 KB
testcase_35 AC 126 ms
68,832 KB
testcase_36 AC 133 ms
68,696 KB
testcase_37 AC 137 ms
68,960 KB
testcase_38 AC 134 ms
69,472 KB
testcase_39 AC 141 ms
69,344 KB
testcase_40 AC 143 ms
68,832 KB
testcase_41 AC 136 ms
68,864 KB
testcase_42 AC 148 ms
69,216 KB
testcase_43 AC 142 ms
69,240 KB
testcase_44 AC 151 ms
69,344 KB
testcase_45 AC 149 ms
68,704 KB
testcase_46 AC 149 ms
68,704 KB
testcase_47 AC 147 ms
69,028 KB
testcase_48 AC 150 ms
68,960 KB
testcase_49 AC 160 ms
68,832 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