結果
問題 | No.362 門松ナンバー |
ユーザー | vwxyz |
提出日時 | 2023-02-03 02:04:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,505 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 18,176 KB |
最終ジャッジ日時 | 2024-07-02 11:19:47 |
合計ジャッジ時間 | 48,964 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,010 ms
11,136 KB |
testcase_01 | AC | 813 ms
11,008 KB |
testcase_02 | AC | 814 ms
11,008 KB |
testcase_03 | AC | 434 ms
11,008 KB |
testcase_04 | AC | 240 ms
10,880 KB |
testcase_05 | AC | 1,346 ms
11,008 KB |
testcase_06 | AC | 2,452 ms
11,008 KB |
testcase_07 | AC | 1,385 ms
10,880 KB |
testcase_08 | AC | 1,867 ms
11,008 KB |
testcase_09 | AC | 2,991 ms
10,880 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 1,985 ms
11,136 KB |
testcase_20 | TLE | - |
testcase_21 | AC | 420 ms
11,008 KB |
ソースコード
import sys readline=sys.stdin.readline def Bisect_Int(ok,ng,is_ok): while abs(ok-ng)>1: mid=(ok+ng)//2 if is_ok(mid): ok=mid else: ng=mid return ok def check(a,b,c): if a==b: return False if a==c: return False if b==c: return False return b in (max(a,b,c),min(a,b,c)) def solve(N): N=list(map(int,list(str(N)))) dp=[[0]*10 for i in range(10)] for a in range(1,10): for b in range(10): if (a,b)<(N[0],N[1]): dp[a][b]+=1 cur=(N[0],N[1]) for i in range(2,len(N)): n=N[i] prev=dp dp=[[0]*10 for a in range(10)] for a in range(10): for b in range(10): for c in range(10): if check(a,b,c): dp[b][c]+=prev[a][b] if cur!=None: a,b=cur for c in range(n): if check(a,b,c): dp[b][c]+=1 if i!=len(N)-1: for a in range(1,10): for b in range(10): dp[a][b]+=1 if cur!=None: a,b=cur c=n if check(a,b,c): cur=(b,c) else: cur=None return sum(dp[a][b] for a in range(10) for b in range(10)) T=int(readline()) for t in range(T): K=int(readline()) def is_ok(ans): return solve(ans)<K ans=Bisect_Int(101,1<<50,is_ok) print(ans)