結果
問題 | No.646 逆ピラミッド |
ユーザー | Gchansanjou |
提出日時 | 2018-02-16 12:31:46 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 144 ms / 2,000 ms |
コード長 | 646 bytes |
コンパイル時間 | 3,324 ms |
コンパイル使用メモリ | 74,196 KB |
実行使用メモリ | 51,692 KB |
最終ジャッジ日時 | 2024-06-10 22:26:02 |
合計ジャッジ時間 | 4,948 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
50,044 KB |
testcase_01 | AC | 144 ms
51,692 KB |
testcase_02 | AC | 59 ms
50,268 KB |
testcase_03 | AC | 136 ms
51,468 KB |
testcase_04 | AC | 97 ms
51,644 KB |
testcase_05 | AC | 90 ms
50,940 KB |
testcase_06 | AC | 139 ms
51,448 KB |
testcase_07 | AC | 58 ms
49,920 KB |
testcase_08 | AC | 55 ms
50,504 KB |
testcase_09 | AC | 58 ms
50,056 KB |
ソースコード
package yukiCoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00646 { public static void main(String[] args) { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); int input; try { input = Integer.parseInt(bufferedReader.readLine()); for (int i = 0 ; i < input ; i++) { for (int j = i ; j < input ; j++) { System.out.print(String.valueOf(input)); } System.out.println(); } } catch (NumberFormatException | IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } } }