結果
問題 | No.1264 010 |
ユーザー | tenten |
提出日時 | 2024-07-03 13:50:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 51 ms / 1,000 ms |
コード長 | 1,243 bytes |
コンパイル時間 | 3,464 ms |
コンパイル使用メモリ | 78,684 KB |
実行使用メモリ | 37,192 KB |
最終ジャッジ日時 | 2024-07-03 13:50:17 |
合計ジャッジ時間 | 3,329 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
37,148 KB |
testcase_01 | AC | 46 ms
37,016 KB |
testcase_02 | AC | 44 ms
36,996 KB |
testcase_03 | AC | 44 ms
36,916 KB |
testcase_04 | AC | 44 ms
36,976 KB |
testcase_05 | AC | 44 ms
36,644 KB |
testcase_06 | AC | 44 ms
37,044 KB |
testcase_07 | AC | 43 ms
37,088 KB |
testcase_08 | AC | 51 ms
37,100 KB |
testcase_09 | AC | 45 ms
36,704 KB |
testcase_10 | AC | 46 ms
37,152 KB |
testcase_11 | AC | 46 ms
37,192 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); char[] output = new char[n + 2]; Arrays.fill(output, '0'); output[1] = '1'; System.out.println(output); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }