結果
問題 | No.2178 Payable Magic Items |
ユーザー | 👑 p-adic |
提出日時 | 2023-05-29 22:06:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 273 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 82,944 KB |
実行使用メモリ | 86,272 KB |
最終ジャッジ日時 | 2024-06-08 19:28:28 |
合計ジャッジ時間 | 6,997 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,216 KB |
testcase_01 | AC | 33 ms
52,096 KB |
testcase_02 | AC | 33 ms
52,096 KB |
testcase_03 | AC | 184 ms
74,368 KB |
testcase_04 | AC | 37 ms
51,840 KB |
testcase_05 | AC | 54 ms
62,592 KB |
testcase_06 | AC | 76 ms
71,808 KB |
testcase_07 | AC | 35 ms
51,712 KB |
testcase_08 | AC | 76 ms
71,808 KB |
testcase_09 | AC | 67 ms
68,608 KB |
testcase_10 | AC | 35 ms
52,224 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
I,R=input,range N,K=map(int,I().split()) p=[pow(5,i)for i in R(K+1)] S=[int(I(),5)for i in R(N)] b=[s in S for s in R(p[K])] a=0 for s in S: L=[s] while len(L): s=L.pop() for q in p: if s%(q*5)//q*(b[s-q]<2): L.append(s-q) a,b[s-q]=a+(b[s-q]==1),2 print(a)