結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー イルカイルカ
提出日時 2024-06-11 12:38:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 123,648 KB
最終ジャッジ日時 2024-06-11 12:38:43
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 129 ms
116,352 KB
testcase_03 AC 138 ms
110,976 KB
testcase_04 AC 116 ms
111,196 KB
testcase_05 AC 119 ms
113,280 KB
testcase_06 AC 124 ms
123,072 KB
testcase_07 AC 123 ms
116,608 KB
testcase_08 AC 130 ms
119,416 KB
testcase_09 AC 32 ms
51,836 KB
testcase_10 AC 32 ms
52,224 KB
testcase_11 AC 31 ms
51,764 KB
testcase_12 AC 124 ms
123,364 KB
testcase_13 AC 132 ms
123,648 KB
testcase_14 AC 133 ms
122,768 KB
testcase_15 AC 128 ms
123,008 KB
testcase_16 AC 103 ms
103,168 KB
testcase_17 AC 99 ms
103,936 KB
testcase_18 AC 116 ms
115,456 KB
testcase_19 AC 99 ms
103,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,*V=map(int,open(0).read().split());V=sorted(V);cnt=0
for i in range(N):cnt=((cnt*10)+V[i])%998244353
print(cnt)
0