結果

問題 No.2729 Addition and Multiplication in yukicoder (Easy)
ユーザー tentententen
提出日時 2024-04-22 09:48:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 1,432 bytes
コンパイル時間 2,727 ms
コンパイル使用メモリ 78,504 KB
実行使用メモリ 66,600 KB
最終ジャッジ日時 2024-10-14 09:02:48
合計ジャッジ時間 10,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,220 KB
testcase_01 AC 50 ms
50,304 KB
testcase_02 AC 305 ms
65,704 KB
testcase_03 AC 341 ms
60,544 KB
testcase_04 AC 342 ms
61,460 KB
testcase_05 AC 350 ms
61,312 KB
testcase_06 AC 376 ms
65,700 KB
testcase_07 AC 359 ms
64,372 KB
testcase_08 AC 315 ms
66,600 KB
testcase_09 AC 52 ms
50,140 KB
testcase_10 AC 52 ms
50,308 KB
testcase_11 AC 52 ms
50,212 KB
testcase_12 AC 366 ms
66,344 KB
testcase_13 AC 373 ms
65,436 KB
testcase_14 AC 372 ms
65,804 KB
testcase_15 AC 374 ms
65,864 KB
testcase_16 AC 334 ms
64,876 KB
testcase_17 AC 329 ms
64,428 KB
testcase_18 AC 351 ms
64,828 KB
testcase_19 AC 332 ms
64,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long[] values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextLong();
        }
        Arrays.sort(values);
        long ans = 0;
        for (long x : values) {
            ans = (ans * 10 + x) % MOD;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0