結果

問題 No.1149 色塗りゲーム
ユーザー xuanjixuanji
提出日時 2020-08-07 21:42:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 71,144 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 04:26:35
合計ジャッジ時間 9,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
68,796 KB
testcase_01 AC 90 ms
69,108 KB
testcase_02 AC 92 ms
70,368 KB
testcase_03 AC 91 ms
69,160 KB
testcase_04 AC 91 ms
69,328 KB
testcase_05 AC 91 ms
70,268 KB
testcase_06 AC 91 ms
68,844 KB
testcase_07 AC 93 ms
69,548 KB
testcase_08 AC 92 ms
70,468 KB
testcase_09 AC 91 ms
70,028 KB
testcase_10 AC 92 ms
69,308 KB
testcase_11 AC 94 ms
69,740 KB
testcase_12 AC 96 ms
69,140 KB
testcase_13 AC 93 ms
70,356 KB
testcase_14 AC 93 ms
69,176 KB
testcase_15 AC 93 ms
69,304 KB
testcase_16 AC 95 ms
69,776 KB
testcase_17 AC 97 ms
71,144 KB
testcase_18 AC 95 ms
68,608 KB
testcase_19 AC 94 ms
70,488 KB
testcase_20 AC 96 ms
69,252 KB
testcase_21 AC 97 ms
69,348 KB
testcase_22 AC 97 ms
69,828 KB
testcase_23 AC 97 ms
69,148 KB
testcase_24 AC 98 ms
68,928 KB
testcase_25 AC 97 ms
70,136 KB
testcase_26 AC 98 ms
68,956 KB
testcase_27 AC 98 ms
69,880 KB
testcase_28 AC 98 ms
69,344 KB
testcase_29 AC 100 ms
69,908 KB
testcase_30 AC 148 ms
69,612 KB
testcase_31 AC 140 ms
69,620 KB
testcase_32 AC 144 ms
70,148 KB
testcase_33 AC 146 ms
69,528 KB
testcase_34 AC 151 ms
69,508 KB
testcase_35 AC 144 ms
69,768 KB
testcase_36 AC 153 ms
70,268 KB
testcase_37 AC 156 ms
69,944 KB
testcase_38 AC 147 ms
69,580 KB
testcase_39 AC 156 ms
70,004 KB
testcase_40 AC 164 ms
70,880 KB
testcase_41 AC 161 ms
69,792 KB
testcase_42 AC 158 ms
70,096 KB
testcase_43 AC 156 ms
70,172 KB
testcase_44 AC 171 ms
69,348 KB
testcase_45 AC 167 ms
69,700 KB
testcase_46 AC 172 ms
69,740 KB
testcase_47 AC 181 ms
69,732 KB
testcase_48 AC 177 ms
69,736 KB
testcase_49 AC 183 ms
70,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import math

def fprint(*args):
	print(*args, flush=True)

N = int(input())

if N % 2 == 0:
	fprint(2, math.ceil(N/2))
else:
	fprint(1, math.ceil(N/2))

while True:
	status = int(input())
	if status == 0:
		break
	elif status == 3:
		a, b = input().split()
		a = int(a)
		b = int(b)
		assert(a in [1, 2])
		if a == 2:
			b += 1
		fprint(a, N+1-b)
	else:
		assert(False)
0