結果

問題 No.2784 繰り上がりなし十進和
ユーザー 👑 KA37RIKA37RI
提出日時 2024-06-14 22:57:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 308 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 84,272 KB
最終ジャッジ日時 2024-06-14 22:58:54
合計ジャッジ時間 74,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,913 ms
83,968 KB
testcase_01 AC 1,924 ms
83,584 KB
testcase_02 AC 1,929 ms
83,840 KB
testcase_03 AC 1,563 ms
83,584 KB
testcase_04 TLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,986 ms
83,712 KB
testcase_10 AC 1,951 ms
83,968 KB
testcase_11 WA -
testcase_12 AC 1,932 ms
83,840 KB
testcase_13 AC 1,944 ms
83,584 KB
testcase_14 AC 1,894 ms
83,712 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 TLE -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = [int(input()) for _ in range(6)]
d = [[ai // 10 ** j % 10 for j in range(6)] for ai in a]

st = [False] * 1000000
for k in range(1000000):
	s = 0
	for i in range(6):
		t = 0
		for j in range(6):
			t += (d[i][j] * (k // 10 ** j) + s // 10 ** j) % 10 * 10 ** j
		s = t
		
	st[s] = True
    
print(sum(st))
0