結果

問題 No.1149 色塗りゲーム
ユーザー shotoyooshotoyoo
提出日時 2020-08-15 00:10:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 70,620 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 05:53:27
合計ジャッジ時間 9,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
69,696 KB
testcase_01 AC 93 ms
69,604 KB
testcase_02 AC 94 ms
69,392 KB
testcase_03 AC 93 ms
68,500 KB
testcase_04 AC 93 ms
69,032 KB
testcase_05 AC 94 ms
69,964 KB
testcase_06 AC 94 ms
69,836 KB
testcase_07 AC 92 ms
68,928 KB
testcase_08 AC 94 ms
68,632 KB
testcase_09 AC 93 ms
69,060 KB
testcase_10 AC 95 ms
69,424 KB
testcase_11 AC 94 ms
68,812 KB
testcase_12 AC 94 ms
70,256 KB
testcase_13 AC 95 ms
69,104 KB
testcase_14 AC 94 ms
69,560 KB
testcase_15 AC 94 ms
68,896 KB
testcase_16 AC 95 ms
69,996 KB
testcase_17 AC 99 ms
70,204 KB
testcase_18 AC 99 ms
70,552 KB
testcase_19 AC 99 ms
68,936 KB
testcase_20 AC 99 ms
68,872 KB
testcase_21 AC 98 ms
69,264 KB
testcase_22 AC 98 ms
68,480 KB
testcase_23 AC 99 ms
68,884 KB
testcase_24 AC 100 ms
69,864 KB
testcase_25 AC 99 ms
69,632 KB
testcase_26 AC 98 ms
69,488 KB
testcase_27 AC 101 ms
69,024 KB
testcase_28 AC 100 ms
68,696 KB
testcase_29 AC 100 ms
69,588 KB
testcase_30 AC 149 ms
69,300 KB
testcase_31 AC 142 ms
69,484 KB
testcase_32 AC 142 ms
69,616 KB
testcase_33 AC 147 ms
69,660 KB
testcase_34 AC 152 ms
69,384 KB
testcase_35 AC 145 ms
68,760 KB
testcase_36 AC 155 ms
69,052 KB
testcase_37 AC 157 ms
69,312 KB
testcase_38 AC 151 ms
69,576 KB
testcase_39 AC 158 ms
70,620 KB
testcase_40 AC 165 ms
68,840 KB
testcase_41 AC 162 ms
70,024 KB
testcase_42 AC 158 ms
69,368 KB
testcase_43 AC 158 ms
69,548 KB
testcase_44 AC 170 ms
69,416 KB
testcase_45 AC 171 ms
69,464 KB
testcase_46 AC 171 ms
69,312 KB
testcase_47 AC 178 ms
69,020 KB
testcase_48 AC 178 ms
70,436 KB
testcase_49 AC 185 ms
69,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


def out(k,x):
    print(" ".join(map(str, (k,x))))
    import sys
    sys.stdout.flush()
n = int(input())
if n%2==0:
    out(2, n//2)
else:
    out(1, n//2+1)
while True:
    t = int(input())
    if t in (0,1):
        break
    k,x = map(int, input().split())
    if t==2:
        break
    out(k, n+1-x-(k-1))
0