結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー Meso MesoMeso Meso
提出日時 2024-05-17 20:17:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 151 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 818,136 KB
最終ジャッジ日時 2024-12-20 12:55:31
合計ジャッジ時間 29,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 46 ms
10,496 KB
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()

x = 0
for i in range(n):
    A[i] = 10 * x + A[i]
    x = A[i]

print(A[-1] % 998244353)
0