結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー nikoro256nikoro256
提出日時 2024-04-19 23:14:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 303 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 481,144 KB
最終ジャッジ日時 2024-10-11 17:42:44
合計ジャッジ時間 55,036 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 36 ms
51,456 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 37 ms
51,456 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 2,425 ms
251,392 KB
testcase_18 AC 2,516 ms
254,908 KB
testcase_19 AC 42 ms
59,776 KB
testcase_20 AC 43 ms
59,520 KB
testcase_21 AC 42 ms
59,776 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2,940 ms
335,232 KB
testcase_28 AC 3,269 ms
458,032 KB
testcase_29 AC 3,332 ms
421,332 KB
testcase_30 AC 2,981 ms
396,664 KB
testcase_31 AC 3,211 ms
477,576 KB
testcase_32 AC 3,074 ms
353,840 KB
testcase_33 AC 1,974 ms
259,244 KB
testcase_34 AC 2,499 ms
369,232 KB
testcase_35 AC 1,295 ms
192,928 KB
testcase_36 AC 1,472 ms
198,688 KB
testcase_37 AC 2,196 ms
299,744 KB
testcase_38 AC 1,989 ms
259,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(str,input().split()))
A=[list(a) for a in A]
A=[((a*(-(-19//len(a))))[:20],len(a)) for a in A]
A.sort()
ans=[]
for a,c in A:
    a=a[:c]
    ans+=a
fa=0
left=1
p=998244353
for i in range(len(ans)-1,-1,-1):
    fa+=left*int(ans[i])
    left*=10
    left%=p
    fa%=p
print(fa%p)
0