結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
69,560 KB
testcase_01 AC 79 ms
69,284 KB
testcase_02 AC 81 ms
70,064 KB
testcase_03 AC 85 ms
68,496 KB
testcase_04 AC 86 ms
69,748 KB
testcase_05 AC 94 ms
69,752 KB
testcase_06 AC 79 ms
69,904 KB
testcase_07 AC 79 ms
68,660 KB
testcase_08 AC 84 ms
68,420 KB
testcase_09 AC 82 ms
69,880 KB
testcase_10 AC 83 ms
69,912 KB
testcase_11 AC 96 ms
69,976 KB
testcase_12 AC 80 ms
70,552 KB
testcase_13 AC 80 ms
69,244 KB
testcase_14 AC 80 ms
68,764 KB
testcase_15 AC 80 ms
69,808 KB
testcase_16 AC 98 ms
68,860 KB
testcase_17 AC 86 ms
70,332 KB
testcase_18 AC 81 ms
69,568 KB
testcase_19 AC 100 ms
68,972 KB
testcase_20 AC 82 ms
69,624 KB
testcase_21 AC 84 ms
69,744 KB
testcase_22 AC 82 ms
69,684 KB
testcase_23 AC 83 ms
69,280 KB
testcase_24 AC 100 ms
68,972 KB
testcase_25 AC 89 ms
69,052 KB
testcase_26 AC 84 ms
69,304 KB
testcase_27 AC 87 ms
69,804 KB
testcase_28 AC 89 ms
69,168 KB
testcase_29 AC 88 ms
68,632 KB
testcase_30 AC 127 ms
70,532 KB
testcase_31 AC 120 ms
68,948 KB
testcase_32 AC 123 ms
69,368 KB
testcase_33 AC 125 ms
69,488 KB
testcase_34 AC 131 ms
68,624 KB
testcase_35 AC 126 ms
68,756 KB
testcase_36 AC 132 ms
70,572 KB
testcase_37 AC 137 ms
69,084 KB
testcase_38 AC 131 ms
69,656 KB
testcase_39 AC 139 ms
69,068 KB
testcase_40 AC 143 ms
68,568 KB
testcase_41 AC 137 ms
69,732 KB
testcase_42 AC 138 ms
70,512 KB
testcase_43 AC 137 ms
69,496 KB
testcase_44 AC 154 ms
69,744 KB
testcase_45 AC 144 ms
69,636 KB
testcase_46 AC 145 ms
70,292 KB
testcase_47 AC 153 ms
69,488 KB
testcase_48 AC 153 ms
69,708 KB
testcase_49 AC 164 ms
69,356 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