結果

問題 No.1149 色塗りゲーム
ユーザー yansi819yansi819
提出日時 2024-05-08 20:07:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,624 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-05-08 20:07:54
合計ジャッジ時間 9,255 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
68,832 KB
testcase_01 AC 88 ms
68,448 KB
testcase_02 AC 93 ms
68,576 KB
testcase_03 AC 90 ms
68,576 KB
testcase_04 AC 91 ms
68,908 KB
testcase_05 AC 90 ms
69,472 KB
testcase_06 AC 87 ms
68,832 KB
testcase_07 AC 89 ms
68,576 KB
testcase_08 AC 86 ms
68,832 KB
testcase_09 AC 90 ms
69,088 KB
testcase_10 AC 91 ms
68,576 KB
testcase_11 AC 92 ms
69,216 KB
testcase_12 AC 91 ms
68,704 KB
testcase_13 AC 90 ms
69,216 KB
testcase_14 AC 95 ms
68,320 KB
testcase_15 AC 90 ms
68,576 KB
testcase_16 AC 92 ms
69,088 KB
testcase_17 AC 90 ms
68,192 KB
testcase_18 AC 91 ms
69,216 KB
testcase_19 AC 89 ms
68,960 KB
testcase_20 AC 93 ms
68,576 KB
testcase_21 AC 92 ms
68,832 KB
testcase_22 AC 91 ms
68,192 KB
testcase_23 AC 92 ms
68,064 KB
testcase_24 AC 107 ms
69,504 KB
testcase_25 AC 96 ms
69,344 KB
testcase_26 AC 96 ms
68,960 KB
testcase_27 AC 93 ms
68,960 KB
testcase_28 AC 93 ms
68,960 KB
testcase_29 AC 92 ms
68,704 KB
testcase_30 AC 139 ms
69,472 KB
testcase_31 AC 132 ms
68,960 KB
testcase_32 AC 144 ms
69,216 KB
testcase_33 AC 139 ms
68,832 KB
testcase_34 AC 139 ms
69,216 KB
testcase_35 AC 133 ms
68,924 KB
testcase_36 AC 149 ms
69,088 KB
testcase_37 AC 155 ms
69,344 KB
testcase_38 AC 142 ms
69,624 KB
testcase_39 AC 155 ms
69,088 KB
testcase_40 AC 155 ms
69,216 KB
testcase_41 AC 157 ms
68,576 KB
testcase_42 AC 152 ms
68,832 KB
testcase_43 AC 153 ms
69,216 KB
testcase_44 AC 163 ms
68,688 KB
testcase_45 AC 169 ms
69,232 KB
testcase_46 AC 165 ms
68,576 KB
testcase_47 AC 177 ms
69,600 KB
testcase_48 AC 179 ms
68,704 KB
testcase_49 AC 182 ms
68,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

k, x = 0, 0
if N % 2 == 1:
    k = 1
    x = N // 2 + 1
else:
    k = 2
    x = N // 2

print(k, x)

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())
        print(k, N + 2 - x - k)
0