結果
問題 | No.260 世界のなんとか3 |
ユーザー | mkawa2 |
提出日時 | 2023-01-13 00:20:49 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,177 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 76,928 KB |
最終ジャッジ日時 | 2024-06-06 04:55:17 |
合計ジャッジ時間 | 6,577 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,352 KB |
testcase_01 | AC | 38 ms
52,480 KB |
testcase_02 | AC | 44 ms
60,544 KB |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | AC | 42 ms
52,224 KB |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
ソースコード
import sys def SI(): return sys.stdin.readline().rstrip() md = 10**9+7 def dodp(aa, eq): dp = [[0]*24, [0]*24] s = t = 0 for i, a in enumerate(aa): ndp = [[0]*24, [0]*24] for f in range(2): for j in range(24): pre = dp[f][j] if pre == 0: continue for d in range(10): nf = f | (d == 3) nj = (j*10+d)%24 ndp[nf][nj] += pre ndp[nf][nj] %= md for d in range(i == 0, a): nf = t | (d == 3) nj = (s*10+d)%24 ndp[nf][nj] += 1 if i: for d in range(1, 10): ndp[d == 3][d] += 1 if a == 3: t = 1 s = (s*10+a)%24 dp = ndp res = 0 for j in range(3, 24, 3): res += dp[0][j] res %= md for j in range(24): if j%8 == 0: continue res += dp[1][j] res %= md if eq and s%8 and (t or s%3 == 0): res += 1 return res aa=[[],[]] i=0 for c in SI(): if c==" ": i+=1 else: aa[i].append(int(c)) ans = dodp(aa[1], 1)-dodp(aa[0], 0) print(ans%md)