結果

問題 No.646 逆ピラミッド
ユーザー GodNegotoGodNegoto
提出日時 2019-11-27 17:18:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 5,430 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 42,164 KB
最終ジャッジ日時 2024-11-08 18:25:50
合計ジャッジ時間 7,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,424 KB
testcase_01 AC 202 ms
42,164 KB
testcase_02 AC 120 ms
39,872 KB
testcase_03 AC 193 ms
41,964 KB
testcase_04 AC 184 ms
41,648 KB
testcase_05 AC 171 ms
41,668 KB
testcase_06 AC 199 ms
42,148 KB
testcase_07 AC 138 ms
41,412 KB
testcase_08 AC 135 ms
41,240 KB
testcase_09 AC 138 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

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

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		for (int i = N; i > 0; i--) {
			for (int j = i; j > 0; j--) {
				System.out.print(N);
			}
			System.out.println("");
		}
	}
}
0