結果
問題 | No.964 2020 |
ユーザー | uwi |
提出日時 | 2020-01-13 19:00:30 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 3,547 ms |
コンパイル使用メモリ | 78,184 KB |
実行使用メモリ | 41,424 KB |
最終ジャッジ日時 | 2024-06-01 08:39:58 |
合計ジャッジ時間 | 6,943 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
package contest200113; import java.io.PrintWriter; import java.util.Arrays; import java.util.Scanner; // だめそうな解法 public class A0 { static Scanner in; static PrintWriter out; static String INPUT = ""; static void solve() { int n = ni(); if(!(1 <= n && n <= 10))throw new RuntimeException(); for(int i = 0;i < n;i++) { for(int j = 0;j < n;j++) { out.print(i); } } out.println(); } public static void main(String[] args) throws Exception { in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT); out = new PrintWriter(System.out); solve(); out.flush(); } static int ni() { return Integer.parseInt(in.next()); } static long nl() { return Long.parseLong(in.next()); } static double nd() { return Double.parseDouble(in.next()); } static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); } }