結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー playerplayer
提出日時 2024-04-22 18:00:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 627 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 117,904 KB
最終ジャッジ日時 2024-10-14 17:11:15
合計ジャッジ時間 10,356 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 166 ms
112,484 KB
testcase_03 AC 598 ms
110,656 KB
testcase_04 AC 607 ms
110,464 KB
testcase_05 AC 600 ms
109,428 KB
testcase_06 AC 617 ms
116,892 KB
testcase_07 AC 607 ms
105,164 KB
testcase_08 AC 284 ms
117,904 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
51,624 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 619 ms
117,124 KB
testcase_13 AC 624 ms
117,188 KB
testcase_14 AC 623 ms
116,928 KB
testcase_15 AC 627 ms
117,052 KB
testcase_16 AC 417 ms
97,888 KB
testcase_17 AC 427 ms
97,632 KB
testcase_18 AC 521 ms
108,176 KB
testcase_19 AC 415 ms
97,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
mod = 998244353

"""aの数値を小さい順に取ってこれるようにするべき"""

x = 0
b = [(a[i],i) for i in range(n)]
b.sort()

for i in range(n):
    aj,j = b[i]
    x = 10*x+aj
    x %= mod
    
print(x) 
0