結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー hiro1729hiro1729
提出日時 2024-04-14 15:07:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,172 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 135,324 KB
最終ジャッジ日時 2024-10-03 14:38:24
合計ジャッジ時間 74,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
88,532 KB
testcase_01 AC 134 ms
88,464 KB
testcase_02 AC 130 ms
88,368 KB
testcase_03 AC 130 ms
88,612 KB
testcase_04 AC 132 ms
88,296 KB
testcase_05 AC 134 ms
88,512 KB
testcase_06 AC 130 ms
88,640 KB
testcase_07 AC 132 ms
88,280 KB
testcase_08 AC 132 ms
88,420 KB
testcase_09 AC 130 ms
88,580 KB
testcase_10 AC 130 ms
88,308 KB
testcase_11 AC 132 ms
88,424 KB
testcase_12 AC 131 ms
88,360 KB
testcase_13 AC 133 ms
88,584 KB
testcase_14 AC 133 ms
88,584 KB
testcase_15 AC 133 ms
88,448 KB
testcase_16 AC 130 ms
88,576 KB
testcase_17 AC 3,662 ms
126,104 KB
testcase_18 AC 3,644 ms
126,004 KB
testcase_19 AC 140 ms
89,176 KB
testcase_20 AC 141 ms
89,240 KB
testcase_21 AC 141 ms
89,144 KB
testcase_22 AC 4,093 ms
135,324 KB
testcase_23 AC 4,172 ms
134,928 KB
testcase_24 AC 4,104 ms
134,804 KB
testcase_25 AC 4,118 ms
135,084 KB
testcase_26 AC 4,139 ms
135,080 KB
testcase_27 AC 3,854 ms
125,352 KB
testcase_28 AC 4,098 ms
131,908 KB
testcase_29 AC 4,017 ms
131,332 KB
testcase_30 AC 3,790 ms
125,084 KB
testcase_31 AC 4,080 ms
131,568 KB
testcase_32 AC 3,775 ms
125,700 KB
testcase_33 AC 2,807 ms
120,012 KB
testcase_34 AC 3,318 ms
122,180 KB
testcase_35 AC 1,891 ms
113,980 KB
testcase_36 AC 2,090 ms
115,728 KB
testcase_37 AC 2,922 ms
119,628 KB
testcase_38 AC 2,865 ms
119,484 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 = (10 ** len(str(i)) * ans + i) % mod
print(ans)
0