結果

問題 No.701 ひとりしりとり
ユーザー YamaKasaYamaKasa
提出日時 2018-10-01 15:45:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-10-12 09:49:25
合計ジャッジ時間 5,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,668 KB
testcase_01 AC 141 ms
54,344 KB
testcase_02 AC 144 ms
53,820 KB
testcase_03 AC 132 ms
53,876 KB
testcase_04 AC 134 ms
53,824 KB
testcase_05 AC 130 ms
54,240 KB
testcase_06 AC 132 ms
53,792 KB
testcase_07 AC 133 ms
54,088 KB
testcase_08 AC 136 ms
53,836 KB
testcase_09 AC 163 ms
54,316 KB
testcase_10 AC 254 ms
57,524 KB
testcase_11 AC 568 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		scan.close();
		String[]w = new String[n];
		char[]c = new char[26];
		for(int i = 0; i < 26; i++) {
			c[i] =  (char) ('a' + i);
		}
		int idx = 0;
		loop: for(int i = 0; i < 26; i++) {
			for(int j = 0; j < 26; j++) {
				for(int k = 0; k < 26; k++) {
					for(int l = 0; k < 26; k++) {
						for(int m = 0; m < 26; m++) {
							char []t = {'a', c[i], c[j], c[k], c[l], c[m], 'a'};
							if(idx == n - 1) {
								t[6] = 'n';
							}
							w[idx] = String.valueOf(t);
							idx ++;
							if(idx == n) {
								break loop;
							}
						}
					}
				}
			}
		}
		for(String s: w) {
			System.out.println(s);
		}
	}
}
0