結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー tkykwtnbtkykwtnb
提出日時 2024-04-19 21:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 129,868 KB
最終ジャッジ日時 2024-10-11 13:57:00
合計ジャッジ時間 9,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 179 ms
114,016 KB
testcase_03 AC 591 ms
111,616 KB
testcase_04 AC 596 ms
110,116 KB
testcase_05 AC 606 ms
107,504 KB
testcase_06 AC 629 ms
129,372 KB
testcase_07 AC 616 ms
117,368 KB
testcase_08 AC 298 ms
129,868 KB
testcase_09 AC 37 ms
52,124 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 610 ms
128,904 KB
testcase_13 AC 617 ms
129,108 KB
testcase_14 AC 617 ms
128,900 KB
testcase_15 AC 613 ms
128,976 KB
testcase_16 AC 420 ms
104,852 KB
testcase_17 AC 427 ms
105,180 KB
testcase_18 AC 530 ms
118,780 KB
testcase_19 AC 419 ms
105,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=[]
for i,a in enumerate(A):
    B.append((a,i))
B.sort()
C=[]
for a,i in B:
    C.append(i)
x=0
for c in C:
    x=(10*x+A[c])%998244353
print(x)
0