結果

問題 No.964 2020
ユーザー tentententen
提出日時 2020-11-09 20:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,020 ms
コード長 479 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-07-22 16:18:04
合計ジャッジ時間 4,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,248 KB
testcase_01 AC 152 ms
53,956 KB
testcase_02 AC 135 ms
54,196 KB
testcase_03 AC 134 ms
54,104 KB
testcase_04 AC 134 ms
54,060 KB
testcase_05 AC 137 ms
54,280 KB
testcase_06 AC 135 ms
54,180 KB
testcase_07 AC 138 ms
53,708 KB
testcase_08 AC 151 ms
54,036 KB
testcase_09 AC 151 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if (n == 1) {
            System.out.println(1);
            return;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                sb.append(j);
            }
        }
        System.out.println(sb.reverse());
    }
}
0