結果

問題 No.1169 Row and Column and Diagonal
ユーザー tentententen
提出日時 2020-08-25 00:36:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 84,732 KB
実行使用メモリ 57,756 KB
最終ジャッジ日時 2024-11-06 10:55:52
合計ジャッジ時間 6,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,992 KB
testcase_01 AC 137 ms
54,172 KB
testcase_02 AC 137 ms
53,996 KB
testcase_03 AC 137 ms
53,976 KB
testcase_04 AC 135 ms
53,856 KB
testcase_05 AC 139 ms
54,020 KB
testcase_06 AC 168 ms
54,104 KB
testcase_07 AC 170 ms
53,888 KB
testcase_08 AC 191 ms
53,916 KB
testcase_09 AC 199 ms
56,360 KB
testcase_10 AC 233 ms
57,140 KB
testcase_11 AC 229 ms
57,192 KB
testcase_12 AC 233 ms
57,056 KB
testcase_13 AC 239 ms
57,204 KB
testcase_14 AC 244 ms
57,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	StringBuilder sb = new StringBuilder();
    	for (int i = 0; i < n; i++) {
    	    for (int j = 0; j < n; j++) {
    	        if (j > 0) {
    	            sb.append(" ");
    	        }
    	        sb.append((2 * i - j + n) % n + 1);
    	    }
    	    sb.append("\n");
    	}
    	System.out.print(sb);
    }
}

0