結果

問題 No.1628 Sorting Integers (MAX of M)
ユーザー みーすけみーすけ
提出日時 2021-10-01 08:17:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 54,160 KB
最終ジャッジ日時 2024-07-18 13:46:26
合計ジャッジ時間 4,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,824 KB
testcase_01 AC 135 ms
54,108 KB
testcase_02 AC 133 ms
54,160 KB
testcase_03 AC 121 ms
53,056 KB
testcase_04 AC 133 ms
54,096 KB
testcase_05 AC 135 ms
54,064 KB
testcase_06 AC 133 ms
53,956 KB
testcase_07 AC 132 ms
53,940 KB
testcase_08 AC 133 ms
54,092 KB
testcase_09 AC 133 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] a = new int[9];
        for (int i = 0; i < 9; i++) {
            a[i] = sc.nextInt();
        }
        for (int i = 8; i >= 0; i--) {
            for (int j = 0; j < a[i]; j++) {
                System.out.print(i + 1);
            }
        }
        System.out.println();
    }
}
0