結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー hiro1729hiro1729
提出日時 2024-04-14 15:09:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,588 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 135,448 KB
最終ジャッジ日時 2024-10-03 14:42:00
合計ジャッジ時間 61,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
88,588 KB
testcase_01 AC 113 ms
88,356 KB
testcase_02 AC 112 ms
88,684 KB
testcase_03 AC 111 ms
88,684 KB
testcase_04 AC 111 ms
88,668 KB
testcase_05 AC 113 ms
88,760 KB
testcase_06 AC 112 ms
88,604 KB
testcase_07 AC 122 ms
88,488 KB
testcase_08 AC 121 ms
88,700 KB
testcase_09 AC 120 ms
88,756 KB
testcase_10 AC 122 ms
88,752 KB
testcase_11 AC 118 ms
88,772 KB
testcase_12 AC 116 ms
88,768 KB
testcase_13 AC 118 ms
88,688 KB
testcase_14 AC 116 ms
88,696 KB
testcase_15 AC 122 ms
88,360 KB
testcase_16 AC 118 ms
88,744 KB
testcase_17 AC 3,105 ms
125,964 KB
testcase_18 AC 3,147 ms
126,132 KB
testcase_19 AC 125 ms
89,188 KB
testcase_20 AC 125 ms
89,452 KB
testcase_21 AC 130 ms
89,260 KB
testcase_22 AC 3,512 ms
135,204 KB
testcase_23 AC 3,588 ms
135,052 KB
testcase_24 AC 3,586 ms
134,924 KB
testcase_25 AC 3,400 ms
135,264 KB
testcase_26 AC 3,474 ms
135,448 KB
testcase_27 AC 3,291 ms
125,348 KB
testcase_28 AC 3,380 ms
132,040 KB
testcase_29 AC 3,373 ms
131,336 KB
testcase_30 AC 3,102 ms
124,960 KB
testcase_31 AC 3,460 ms
131,308 KB
testcase_32 AC 3,114 ms
125,892 KB
testcase_33 AC 2,267 ms
119,864 KB
testcase_34 AC 2,731 ms
122,328 KB
testcase_35 AC 1,565 ms
114,344 KB
testcase_36 AC 1,712 ms
115,816 KB
testcase_37 AC 2,519 ms
119,644 KB
testcase_38 AC 2,395 ms
119,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
N = int(input())
A = list(map(int, input().split()))
B = [(Fraction(i, 10 ** len(str(i)) - 1), i) for i in A]
B.sort()
ans = 0
mod = 998244353
for _, i in B:
	ans = (pow(10, len(str(i)), mod) * ans + i) % mod
print(ans)
0