結果
問題 | No.2159 Filling 4x4 array |
ユーザー | vwxyz |
提出日時 | 2024-05-03 14:17:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,257 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 137,524 KB |
最終ジャッジ日時 | 2024-05-03 14:17:45 |
合計ジャッジ時間 | 19,910 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 447 ms
116,664 KB |
testcase_01 | AC | 418 ms
116,916 KB |
testcase_02 | AC | 455 ms
117,292 KB |
testcase_03 | AC | 459 ms
117,548 KB |
testcase_04 | AC | 790 ms
119,216 KB |
testcase_05 | AC | 475 ms
117,780 KB |
testcase_06 | AC | 493 ms
118,712 KB |
testcase_07 | AC | 442 ms
117,164 KB |
testcase_08 | AC | 515 ms
118,704 KB |
testcase_09 | AC | 492 ms
117,680 KB |
testcase_10 | AC | 514 ms
117,784 KB |
testcase_11 | AC | 511 ms
118,292 KB |
testcase_12 | AC | 480 ms
118,572 KB |
testcase_13 | AC | 537 ms
118,964 KB |
testcase_14 | AC | 538 ms
118,824 KB |
testcase_15 | AC | 507 ms
118,068 KB |
testcase_16 | AC | 477 ms
117,676 KB |
testcase_17 | AC | 497 ms
117,800 KB |
testcase_18 | AC | 466 ms
117,420 KB |
testcase_19 | AC | 501 ms
119,220 KB |
testcase_20 | AC | 445 ms
117,300 KB |
testcase_21 | AC | 561 ms
118,576 KB |
testcase_22 | AC | 442 ms
117,556 KB |
testcase_23 | AC | 498 ms
118,576 KB |
testcase_24 | AC | 497 ms
118,840 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
import sys readline=sys.stdin.readline from functools import lru_cache from collections import defaultdict pow5=[1, 5, 25, 125, 625, 3125, 15625, 78125] HW=list(map(int,readline().split())) for i in range(8): HW[i]-=4 H,W=HW[:4],HW[4:] H.sort() W.sort() mod=998244353 cnt=[defaultdict(int) for c in range(390625)] se=set() for bit in range(1<<16): HH=tuple(sum(bit>>h*4+w&1 for w in range(4)) for h in range(4)) WW=tuple(sum(bit>>h*4+w&1 for h in range(4)) for w in range(4)) cnt[sum(HH[i]%2*pow5[i] for i in range(4))+sum(WW[i]%2*5**(i+4) for i in range(4))][(HH,WW)]+=1 se.add((HH,WW)) @lru_cache(maxsize=None) def solve(H,W): for h in H: if h<0: return 0 for w in W: if w<0: return 0 if all(h==0 for h in H) and all(w==0 for w in W): return 1 retu=0 for (HH,WW),c in cnt[sum(H[i]%2*pow5[i] for i in range(4))+sum(W[i]%2*5**(i+4) for i in range(4))].items(): if all(h>=hh and h%2==hh%2 for h,hh in zip(H,HH)) and all(w>=ww and w%2==ww%2 for w,ww in zip(W,WW)): retu+=solve(tuple(sorted([h-hh>>1 for h,hh in zip(H,HH)])),tuple(sorted([w-ww>>1 for w,ww in zip(W,WW)])))*c retu%=mod return retu ans=solve(tuple(H),tuple(W)) print(ans)