結果

問題 No.2784 繰り上がりなし十進和
ユーザー 👑 p-adicp-adic
提出日時 2024-01-04 13:02:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 242,084 KB
最終ジャッジ日時 2024-09-27 18:40:48
合計ジャッジ時間 13,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,588 KB
testcase_01 AC 42 ms
62,760 KB
testcase_02 AC 567 ms
241,624 KB
testcase_03 AC 37 ms
52,500 KB
testcase_04 AC 36 ms
53,532 KB
testcase_05 AC 42 ms
61,204 KB
testcase_06 AC 39 ms
59,160 KB
testcase_07 AC 42 ms
60,508 KB
testcase_08 AC 62 ms
75,892 KB
testcase_09 AC 67 ms
76,060 KB
testcase_10 AC 67 ms
76,088 KB
testcase_11 AC 67 ms
76,476 KB
testcase_12 AC 551 ms
241,740 KB
testcase_13 AC 553 ms
242,084 KB
testcase_14 AC 303 ms
116,540 KB
testcase_15 AC 101 ms
81,052 KB
testcase_16 AC 282 ms
87,772 KB
testcase_17 AC 609 ms
157,084 KB
testcase_18 AC 605 ms
156,700 KB
testcase_19 AC 205 ms
92,852 KB
testcase_20 AC 689 ms
241,756 KB
testcase_21 AC 191 ms
88,844 KB
testcase_22 AC 668 ms
241,824 KB
testcase_23 AC 176 ms
80,528 KB
testcase_24 AC 508 ms
107,116 KB
testcase_25 AC 567 ms
157,176 KB
testcase_26 AC 627 ms
241,836 KB
testcase_27 AC 620 ms
241,648 KB
testcase_28 AC 329 ms
115,644 KB
testcase_29 AC 719 ms
241,800 KB
testcase_30 AC 342 ms
115,556 KB
testcase_31 AC 289 ms
88,352 KB
testcase_32 AC 373 ms
154,080 KB
testcase_33 AC 339 ms
154,340 KB
testcase_34 AC 518 ms
107,720 KB
testcase_35 AC 252 ms
83,932 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):
	for t in S[i-1]:
		for a in R(B):S[i].add(sum((t//P[j]+a*A[i][j])%B*P[j]for j in R(6)))
print(len(S[5]))
0