結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー kusirakusirakusirakusira
提出日時 2024-04-04 18:08:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 112,360 KB
最終ジャッジ日時 2024-10-01 00:29:00
合計ジャッジ時間 3,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,536 KB
testcase_01 AC 37 ms
53,976 KB
testcase_02 AC 134 ms
112,360 KB
testcase_03 AC 117 ms
105,740 KB
testcase_04 AC 119 ms
105,728 KB
testcase_05 AC 121 ms
107,560 KB
testcase_06 AC 137 ms
107,076 KB
testcase_07 AC 140 ms
100,640 KB
testcase_08 AC 126 ms
106,504 KB
testcase_09 AC 36 ms
52,028 KB
testcase_10 AC 36 ms
53,044 KB
testcase_11 AC 38 ms
52,612 KB
testcase_12 AC 138 ms
107,076 KB
testcase_13 AC 137 ms
107,568 KB
testcase_14 AC 136 ms
107,072 KB
testcase_15 AC 134 ms
107,092 KB
testcase_16 AC 110 ms
97,884 KB
testcase_17 AC 112 ms
97,588 KB
testcase_18 AC 128 ms
102,144 KB
testcase_19 AC 111 ms
97,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 998244353
if((1<=n<=2*10**5)==False): print("No")
A.sort()
x = 0
for i in range(n):
    x = x * 10 + A[i]
    x %= mod
    if((1<=A[i]<=10**18) == False):
        print("No")

print(x)
0