結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー ks2mks2m
提出日時 2024-04-19 21:25:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 2,979 ms
コンパイル使用メモリ 74,920 KB
実行使用メモリ 66,416 KB
最終ジャッジ日時 2024-10-11 13:52:30
合計ジャッジ時間 11,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,104 KB
testcase_01 AC 55 ms
36,936 KB
testcase_02 AC 378 ms
65,976 KB
testcase_03 AC 485 ms
58,744 KB
testcase_04 AC 434 ms
59,904 KB
testcase_05 AC 398 ms
60,188 KB
testcase_06 AC 527 ms
66,416 KB
testcase_07 AC 530 ms
63,224 KB
testcase_08 AC 359 ms
66,136 KB
testcase_09 AC 53 ms
37,048 KB
testcase_10 AC 53 ms
37,104 KB
testcase_11 AC 53 ms
37,032 KB
testcase_12 AC 524 ms
65,836 KB
testcase_13 AC 523 ms
66,072 KB
testcase_14 AC 518 ms
66,308 KB
testcase_15 AC 524 ms
66,172 KB
testcase_16 AC 439 ms
59,240 KB
testcase_17 AC 442 ms
59,128 KB
testcase_18 AC 474 ms
59,808 KB
testcase_19 AC 397 ms
59,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Long.parseLong(sa[i]);
		}
		br.close();

		Arrays.sort(a);
		int mod = 998244353;
		long ans = 0;
		for (int i = 0; i < n; i++) {
			ans *= 10;
			ans += a[i];
			ans %= mod;
		}
		System.out.println(ans);
	}
}
0