結果

問題 No.3042 本棚
ユーザー moriyukimoriyuki
提出日時 2023-04-27 11:10:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 3,629 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-11-16 18:59:34
合計ジャッジ時間 7,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,932 KB
testcase_01 AC 126 ms
41,556 KB
testcase_02 AC 129 ms
41,700 KB
testcase_03 AC 128 ms
41,216 KB
testcase_04 AC 116 ms
40,420 KB
testcase_05 AC 123 ms
41,064 KB
testcase_06 AC 115 ms
40,236 KB
testcase_07 AC 125 ms
41,084 KB
testcase_08 AC 128 ms
41,664 KB
testcase_09 AC 128 ms
41,796 KB
testcase_10 AC 113 ms
40,256 KB
testcase_11 AC 129 ms
41,448 KB
testcase_12 AC 124 ms
41,308 KB
testcase_13 AC 116 ms
40,240 KB
testcase_14 AC 113 ms
39,936 KB
testcase_15 AC 115 ms
40,256 KB
testcase_16 AC 131 ms
41,524 KB
testcase_17 AC 131 ms
41,352 KB
testcase_18 AC 128 ms
41,480 KB
testcase_19 AC 127 ms
41,480 KB
testcase_20 AC 127 ms
41,272 KB
testcase_21 AC 119 ms
40,980 KB
testcase_22 AC 117 ms
41,012 KB
testcase_23 AC 130 ms
41,304 KB
testcase_24 AC 108 ms
40,312 KB
testcase_25 AC 106 ms
40,212 KB
testcase_26 AC 117 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class BookShelf2 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.nextLine();
		
		String[] a = new String[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextLine();
		}
		
		Arrays.sort(a);
		for (String s : a) {
			System.out.println(s);
		}
		
		sc.close();
	}
}
0