結果

問題 No.490 yukiソート
ユーザー tsunabittsunabit
提出日時 2019-06-09 21:26:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 856 bytes
コンパイル時間 3,534 ms
コンパイル使用メモリ 80,468 KB
実行使用メモリ 55,140 KB
最終ジャッジ日時 2024-10-06 00:17:21
合計ジャッジ時間 11,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,284 KB
testcase_01 WA -
testcase_02 AC 143 ms
41,356 KB
testcase_03 AC 144 ms
41,840 KB
testcase_04 AC 178 ms
41,800 KB
testcase_05 AC 179 ms
41,896 KB
testcase_06 AC 177 ms
42,132 KB
testcase_07 AC 180 ms
41,828 KB
testcase_08 AC 177 ms
41,828 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 148 ms
41,540 KB
testcase_25 AC 142 ms
41,176 KB
testcase_26 AC 142 ms
41,644 KB
testcase_27 AC 145 ms
41,564 KB
testcase_28 AC 140 ms
41,104 KB
testcase_29 AC 146 ms
41,968 KB
testcase_30 AC 131 ms
40,508 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No490 {
    public static void main(String[] args) {
    	try {
    		// 入力元がファイル
//        	File inputFile = new File("");
//        	Scanner sc = new Scanner(inputFile);
            // 標準入力から読み込む際に、Scannerオブジェクトを使う。
            Scanner sc = new Scanner(System.in);
            int n = Integer.parseInt(sc.nextLine());
            String[] a = sc.nextLine().split(" ");
            int[] b = new int[n];
            for(int i = 0; i < a.length; i++) {
            	b[i] = Integer.parseInt(a[i]);
            }
            Arrays.sort(b);
            for(int i = 0; i < n; i++) {
            	System.out.print(b[i] + " ");
            }
            System.out.println("");
    	}catch(Exception e) {
    		
    	}
    }
}
0