結果

問題 No.1149 色塗りゲーム
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-14 16:14:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 71,128 KB
平均クエリ数 19.88
最終ジャッジ日時 2024-07-17 11:32:06
合計ジャッジ時間 9,254 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
70,216 KB
testcase_01 AC 90 ms
69,252 KB
testcase_02 AC 95 ms
68,788 KB
testcase_03 AC 94 ms
70,556 KB
testcase_04 AC 91 ms
69,452 KB
testcase_05 AC 91 ms
70,028 KB
testcase_06 AC 91 ms
69,980 KB
testcase_07 AC 92 ms
69,552 KB
testcase_08 AC 91 ms
69,180 KB
testcase_09 AC 90 ms
69,840 KB
testcase_10 AC 93 ms
68,696 KB
testcase_11 AC 91 ms
70,008 KB
testcase_12 AC 92 ms
69,916 KB
testcase_13 AC 93 ms
68,888 KB
testcase_14 AC 92 ms
68,736 KB
testcase_15 AC 92 ms
70,424 KB
testcase_16 AC 94 ms
69,008 KB
testcase_17 AC 97 ms
70,356 KB
testcase_18 AC 94 ms
69,436 KB
testcase_19 AC 95 ms
69,520 KB
testcase_20 AC 94 ms
70,204 KB
testcase_21 AC 94 ms
69,008 KB
testcase_22 AC 97 ms
71,128 KB
testcase_23 AC 94 ms
69,176 KB
testcase_24 AC 98 ms
69,008 KB
testcase_25 AC 97 ms
68,720 KB
testcase_26 AC 97 ms
69,468 KB
testcase_27 AC 97 ms
69,696 KB
testcase_28 AC 98 ms
70,220 KB
testcase_29 AC 99 ms
68,676 KB
testcase_30 AC 147 ms
69,988 KB
testcase_31 AC 141 ms
69,992 KB
testcase_32 AC 147 ms
70,376 KB
testcase_33 AC 145 ms
70,428 KB
testcase_34 AC 152 ms
70,088 KB
testcase_35 AC 146 ms
69,556 KB
testcase_36 AC 154 ms
69,744 KB
testcase_37 AC 153 ms
69,752 KB
testcase_38 AC 151 ms
69,468 KB
testcase_39 AC 152 ms
69,744 KB
testcase_40 AC 162 ms
70,444 KB
testcase_41 AC 157 ms
69,204 KB
testcase_42 AC 166 ms
69,864 KB
testcase_43 AC 159 ms
70,588 KB
testcase_44 AC 172 ms
69,748 KB
testcase_45 AC 171 ms
69,228 KB
testcase_46 AC 171 ms
69,124 KB
testcase_47 AC 172 ms
70,120 KB
testcase_48 AC 170 ms
70,676 KB
testcase_49 AC 180 ms
69,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mat=["-"]*n
if n%2==1:
  k,x=1,(n+1)//2
else:
  k,x=2,(n+1)//2
print(k,x)
for i in range(k):mat[x-1+i]="o"
#print(mat)
while True:
  t=int(input())
  if t==0 or t==1:break
  k,x=map(int,input().split())
  for i in range(k):mat[x-1+i]="o"
  #print(mat)
  if t==2:break
  if n%2==0:
    if x<(n+1)//2:
      x = (n+1)//2 + 1 + x
    else:
      x = x - (n+1)//2 - 1
  else:
    if x<(n+1)//2:
      x = (n+1)//2 + x
    else:
      x = x - (n+1)//2
  print(k,x)
  for i in range(k):mat[x-1+i]="o"
  #print(mat)
0