結果

問題 No.1475 時計の歯車Easy
ユーザー yule10syule10s
提出日時 2021-04-17 15:31:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 2,979 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 42,616 KB
最終ジャッジ日時 2024-07-03 23:07:26
合計ジャッジ時間 9,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
42,616 KB
testcase_01 AC 191 ms
42,316 KB
testcase_02 AC 109 ms
39,936 KB
testcase_03 AC 129 ms
40,828 KB
testcase_04 AC 140 ms
41,356 KB
testcase_05 AC 137 ms
41,320 KB
testcase_06 AC 122 ms
41,216 KB
testcase_07 AC 121 ms
40,652 KB
testcase_08 AC 144 ms
41,380 KB
testcase_09 AC 139 ms
41,848 KB
testcase_10 AC 135 ms
41,456 KB
testcase_11 AC 142 ms
41,704 KB
testcase_12 AC 142 ms
41,704 KB
testcase_13 AC 129 ms
40,992 KB
testcase_14 AC 138 ms
41,484 KB
testcase_15 AC 158 ms
41,612 KB
testcase_16 AC 133 ms
40,872 KB
testcase_17 AC 129 ms
41,548 KB
testcase_18 AC 121 ms
41,072 KB
testcase_19 AC 131 ms
41,528 KB
testcase_20 AC 122 ms
41,056 KB
testcase_21 AC 154 ms
41,884 KB
testcase_22 AC 114 ms
40,044 KB
testcase_23 AC 113 ms
41,080 KB
testcase_24 AC 116 ms
41,272 KB
testcase_25 AC 106 ms
40,448 KB
testcase_26 AC 130 ms
41,360 KB
testcase_27 AC 131 ms
41,264 KB
testcase_28 AC 143 ms
41,728 KB
testcase_29 AC 129 ms
41,660 KB
testcase_30 AC 135 ms
41,612 KB
testcase_31 AC 134 ms
41,624 KB
testcase_32 AC 149 ms
41,800 KB
testcase_33 AC 135 ms
41,608 KB
testcase_34 AC 131 ms
41,152 KB
testcase_35 AC 129 ms
41,348 KB
testcase_36 AC 133 ms
41,464 KB
testcase_37 AC 132 ms
41,352 KB
testcase_38 AC 116 ms
41,228 KB
testcase_39 AC 145 ms
41,568 KB
testcase_40 AC 146 ms
41,312 KB
testcase_41 AC 135 ms
41,768 KB
testcase_42 AC 135 ms
41,128 KB
testcase_43 AC 127 ms
41,400 KB
testcase_44 AC 141 ms
41,364 KB
testcase_45 AC 146 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        // System.out.println("n = "+ n);
        for (int i = 0; i < n ; i++) {
            int k = sc.nextInt();
            ArrayList<Integer> parts = new ArrayList<Integer>();
            for (int j = 0; j < k; j++) {
                parts.add(sc.nextInt());
            }
            Collections.sort(parts);
            Collections.reverse(parts);
            int[] tmp = new int[parts.size()];
            parts.toArray();
            for (int value : parts) {
                System.out.print(value);
                System.out.print(" ");
            }
            System.out.print("\n");
        }
    }
}
0