結果

問題 No.1797 永遠のグリッド
ユーザー ramdosramdos
提出日時 2021-12-02 09:39:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 78,224 KB
最終ジャッジ日時 2024-10-09 06:20:19
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,952 KB
testcase_01 AC 37 ms
52,348 KB
testcase_02 AC 37 ms
52,696 KB
testcase_03 AC 37 ms
52,520 KB
testcase_04 AC 40 ms
53,016 KB
testcase_05 AC 38 ms
53,296 KB
testcase_06 AC 37 ms
52,744 KB
testcase_07 AC 38 ms
52,392 KB
testcase_08 AC 37 ms
53,196 KB
testcase_09 AC 79 ms
76,016 KB
testcase_10 AC 38 ms
52,596 KB
testcase_11 AC 45 ms
61,040 KB
testcase_12 AC 65 ms
72,628 KB
testcase_13 AC 64 ms
73,552 KB
testcase_14 AC 37 ms
52,080 KB
testcase_15 AC 38 ms
52,724 KB
testcase_16 AC 53 ms
66,116 KB
testcase_17 AC 152 ms
76,876 KB
testcase_18 AC 297 ms
77,800 KB
testcase_19 AC 38 ms
53,872 KB
testcase_20 AC 297 ms
78,224 KB
testcase_21 AC 162 ms
76,724 KB
testcase_22 AC 119 ms
76,660 KB
testcase_23 AC 334 ms
77,988 KB
testcase_24 AC 106 ms
76,560 KB
testcase_25 AC 147 ms
76,784 KB
testcase_26 AC 294 ms
77,976 KB
testcase_27 AC 43 ms
60,208 KB
testcase_28 AC 38 ms
52,740 KB
testcase_29 AC 167 ms
76,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,K= map(int,input().split())
A=[[0 for i in range(H)]for j in range(W)]
B=[[0 for i in range(H)]for j in range(W)]
s=0
f=0
p=set()
while f==0:
  # print(A)
  r=0
  for i in range(H):
    if r==1:
        break
    for j in range(W):
      q=tuple([A[(j+b)%W][(i+a)%H] for a in range(H) for b in range(W)])
      if q in p:
        r=1
        break
  t=set()
  for i in range(W):
    for j in range(H):
      t.add(A[i][j])
  if r==0 and len(t)==K:
    p.add(tuple([A[b][a] for a in range(H) for b in range(W)]))
  s+=1
  ptr=0
  while True:
    if ptr==H*W:
        f=1
        break
    if(A[ptr%W][ptr//W]==K-1):
      ptr+=1
    else:
      A[ptr%W][ptr//W]+=1
      while ptr>=1:
        ptr-=1
        A[ptr%W][ptr//W]=0
      break
print(len(p))
0