結果

問題 No.1399 すごろくで世界旅行 (構築)
ユーザー shojin_proshojin_pro
提出日時 2021-02-19 22:50:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 1,890 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 64,312 KB
最終ジャッジ日時 2024-09-16 21:27:23
合計ジャッジ時間 32,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,052 KB
testcase_01 AC 107 ms
53,020 KB
testcase_02 AC 114 ms
54,140 KB
testcase_03 AC 106 ms
54,144 KB
testcase_04 AC 113 ms
53,972 KB
testcase_05 WA -
testcase_06 AC 105 ms
53,084 KB
testcase_07 AC 111 ms
53,932 KB
testcase_08 AC 110 ms
54,032 KB
testcase_09 WA -
testcase_10 AC 113 ms
54,032 KB
testcase_11 AC 95 ms
52,712 KB
testcase_12 AC 127 ms
54,224 KB
testcase_13 WA -
testcase_14 AC 109 ms
53,876 KB
testcase_15 AC 113 ms
53,932 KB
testcase_16 AC 123 ms
54,088 KB
testcase_17 AC 1,789 ms
59,436 KB
testcase_18 AC 1,763 ms
59,628 KB
testcase_19 AC 1,688 ms
59,616 KB
testcase_20 AC 1,707 ms
59,560 KB
testcase_21 AC 1,706 ms
59,480 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int d = sc.nextInt();
        for(int i = 0; i < n; i++){
            for(int j = 0; j < n; j++){
                if(i == 0 || j == 0){
                    System.out.print(1);
                }else{
                    System.out.print(0);
                }
            }
            System.out.println();
        }
    }

}
0