結果

問題 No.1971 Easy Sudoku
ユーザー ks2mks2m
提出日時 2022-06-10 22:11:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 3,432 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 41,964 KB
最終ジャッジ日時 2024-09-21 06:25:48
合計ジャッジ時間 4,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,016 KB
testcase_01 AC 123 ms
41,012 KB
testcase_02 AC 145 ms
40,988 KB
testcase_03 AC 128 ms
41,264 KB
testcase_04 AC 134 ms
41,412 KB
testcase_05 AC 119 ms
41,384 KB
testcase_06 AC 120 ms
41,056 KB
testcase_07 AC 136 ms
40,936 KB
testcase_08 AC 125 ms
41,032 KB
testcase_09 AC 128 ms
41,064 KB
testcase_10 AC 133 ms
41,688 KB
testcase_11 AC 118 ms
40,872 KB
testcase_12 AC 122 ms
41,124 KB
testcase_13 AC 156 ms
41,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		for (int i = 0; i < n; i++) {
			StringBuilder sb = new StringBuilder();
			for (int j = 0; j < n; j++) {
				sb.append((i + j) % n + 1).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());
		}
	}
}
0