結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー ButterflvButterflv
提出日時 2024-04-24 13:42:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 111,980 KB
最終ジャッジ日時 2024-11-06 21:57:07
合計ジャッジ時間 4,409 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,924 KB
testcase_01 AC 42 ms
52,692 KB
testcase_02 AC 144 ms
111,980 KB
testcase_03 AC 118 ms
104,708 KB
testcase_04 AC 121 ms
106,168 KB
testcase_05 AC 123 ms
107,028 KB
testcase_06 AC 141 ms
106,984 KB
testcase_07 AC 136 ms
100,380 KB
testcase_08 AC 129 ms
106,528 KB
testcase_09 AC 38 ms
52,148 KB
testcase_10 AC 39 ms
52,696 KB
testcase_11 AC 38 ms
52,820 KB
testcase_12 AC 140 ms
107,100 KB
testcase_13 AC 141 ms
107,116 KB
testcase_14 AC 141 ms
106,780 KB
testcase_15 AC 140 ms
106,736 KB
testcase_16 AC 114 ms
97,832 KB
testcase_17 AC 115 ms
98,200 KB
testcase_18 AC 130 ms
101,924 KB
testcase_19 AC 116 ms
97,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
A.sort()
x=0
for i in range(len(A)):
  x = (10*x + A[i])%998244353
print(x)
0