結果
問題 | No.1149 色塗りゲーム |
ユーザー | lllllll88938494 |
提出日時 | 2023-05-09 15:46:16 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,892 bytes |
コンパイル時間 | 428 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 109,696 KB |
平均クエリ数 | 0.46 |
最終ジャッジ日時 | 2024-11-26 02:22:48 |
合計ジャッジ時間 | 112,489 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
68,832 KB |
testcase_01 | AC | 96 ms
69,472 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | TLE | - |
testcase_09 | RE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | RE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | RE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | RE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
testcase_49 | TLE | - |
ソースコード
n=int(input()) g=[0]*(n+1) for i in range(1,n+1): g[i] = i%3 f = [0]*(n) while True: gs = 0 x = [] t = 0 for i in range(n): if f[i] == 0: t += 1 elif f[i] == 1: if t > 0: x.append(t) gs^=t x.append(0) t = 0 if i == n-1 and t > 0: x.append(t) gs^=t cnt=0 for i in x: if i == 0: cnt+=1 continue ff = 0 for k in range(1,i+1): ts=gs l,r = k-1,i-k ts^=i ts^=l ts^=r cnt += 1 if ts == 0: ff = 1 break if ff: break if ff == 1: print(1,cnt,flush=True) v=int(input()) if v == 0: exit() xx,yy=map(int,input().split()) if xx == 0: exit() if xx == 1: f[yy] = 1 else: f[yy] = 1 f[yy+1] = 1 f[cnt] = 1 continue cnt=0 for i in x: if i <= 1: cnt+=1 continue ff = 0 for k in range(1,i): ts=gs l,r = k-1,i-(k+1) ts^=i ts^=l ts^=r cnt += 1 if ts == 0: ff = 1 break if ff: break if ff == 1: print(2,cnt,flush=True) v=int(input()) if v == 0: exit() xx,yy=map(int,input().split()) if xx == 1: f[yy] = 1 else: f[yy] = 1 f[yy+1] = 1 f[cnt] = 1 f[cnt+1] = 1