結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー 👑 KA37RIKA37RI
提出日時 2024-04-19 21:34:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-10-11 14:15:51
合計ジャッジ時間 3,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 145 ms
99,900 KB
testcase_03 AC 125 ms
90,880 KB
testcase_04 AC 125 ms
92,032 KB
testcase_05 AC 130 ms
93,952 KB
testcase_06 AC 149 ms
94,756 KB
testcase_07 AC 144 ms
100,352 KB
testcase_08 AC 140 ms
94,308 KB
testcase_09 AC 41 ms
51,456 KB
testcase_10 AC 42 ms
51,456 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 149 ms
95,004 KB
testcase_13 AC 149 ms
95,400 KB
testcase_14 AC 149 ms
94,624 KB
testcase_15 AC 147 ms
94,628 KB
testcase_16 AC 116 ms
92,416 KB
testcase_17 AC 125 ms
97,664 KB
testcase_18 AC 142 ms
94,976 KB
testcase_19 AC 119 ms
92,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(x) for x in input().split()]

a.sort()
x = 0
for ai in a:
	x *= 10
	x += ai
	x %= 998244353
	
print(x)
0