結果

問題 No.964 2020
ユーザー yukiyuki
提出日時 2020-08-18 11:16:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 75,560 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-12 02:32:02
合計ジャッジ時間 4,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,824 KB
testcase_01 AC 125 ms
54,008 KB
testcase_02 AC 125 ms
53,716 KB
testcase_03 AC 131 ms
53,704 KB
testcase_04 AC 115 ms
52,596 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Scanner;

public class Main {
	public static void main (String[] args) {
		Scanner in = new Scanner(System.in);
        List<Integer> list = new ArrayList<>();
		int N = in.nextInt();
        int kind = N;
        
        for(int i=0; i<kind; i++){
            list.add(N);
            // System.out.println(N);
            N++;
            
        }
        for(int i=0; i<kind; i++){
            String num = Integer.toString(list.get(i));
            for(int j=0; j<kind; j++)
                System.out.print(num);
        }
   }

}
0