結果

問題 No.646 逆ピラミッド
ユーザー tetsutetsu
提出日時 2018-02-09 22:39:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 3,580 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-10-08 16:21:03
合計ジャッジ時間 5,208 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,960 KB
testcase_01 AC 179 ms
54,024 KB
testcase_02 AC 103 ms
52,876 KB
testcase_03 AC 166 ms
54,092 KB
testcase_04 AC 161 ms
53,644 KB
testcase_05 AC 141 ms
53,908 KB
testcase_06 AC 171 ms
54,188 KB
testcase_07 AC 117 ms
53,928 KB
testcase_08 AC 102 ms
53,028 KB
testcase_09 AC 106 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki183;
import java.util.*;
public class A {
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		for(int i=1; i<=n; i++) {
			for(int j=1; j<=n-i+1; j++) {
				System.out.print(n);
			}
			System.out.println();
		}
	}
}
0