結果

問題 No.2784 繰り上がりなし十進和
ユーザー 👑 p-adicp-adic
提出日時 2024-01-04 23:27:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 235 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 90,544 KB
最終ジャッジ日時 2024-09-27 18:52:37
合計ジャッジ時間 42,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 TLE -
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 53 ms
10,880 KB
testcase_09 AC 82 ms
10,880 KB
testcase_10 AC 80 ms
11,008 KB
testcase_11 AC 84 ms
11,008 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,174 ms
32,940 KB
testcase_15 AC 247 ms
15,168 KB
testcase_16 AC 1,143 ms
24,108 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 622 ms
23,416 KB
testcase_20 TLE -
testcase_21 AC 609 ms
23,380 KB
testcase_22 TLE -
testcase_23 AC 613 ms
18,192 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,198 ms
33,016 KB
testcase_29 TLE -
testcase_30 AC 1,236 ms
33,160 KB
testcase_31 AC 1,136 ms
24,316 KB
testcase_32 AC 1,210 ms
50,324 KB
testcase_33 AC 1,207 ms
50,292 KB
testcase_34 TLE -
testcase_35 AC 1,122 ms
19,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
B=10
P=[B**j for j in R(6)]
A=[]
for i in R(6):
	a=int(input())
	A+=[[a//P[j]%B for j in R(6)]]
S=[{0}for i in R(6)]
for i in R(6):S[i]={sum((t//P[j]+a*A[i][j])%B*P[j]for j in R(6))for a in R(B)for t in S[i-1]}
print(len(S[5]))
0