結果

問題 No.1264 010
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-26 22:46:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 3,767 ms
コンパイル使用メモリ 89,536 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-23 20:51:00
合計ジャッジ時間 6,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,256 KB
testcase_01 WA -
testcase_02 AC 133 ms
53,996 KB
testcase_03 AC 136 ms
54,048 KB
testcase_04 AC 137 ms
54,120 KB
testcase_05 AC 135 ms
54,144 KB
testcase_06 WA -
testcase_07 AC 136 ms
54,160 KB
testcase_08 AC 139 ms
53,988 KB
testcase_09 AC 139 ms
54,104 KB
testcase_10 AC 139 ms
54,116 KB
testcase_11 AC 137 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.Collectors;
import java.util.stream.IntStream;

// https://yukicoder.me/problems/no/1264
public class ZeroOneZero1264 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int numberOfZero = Integer.parseInt(sc.next()) - 1;
    if (numberOfZero == 0) {
      System.out.println(1);
      return;
    }
    String zeros = IntStream.range(0, numberOfZero).mapToObj(i -> "0").collect(Collectors.joining(""));
    System.out.println("010" + zeros);
    // System.out.println(replaceAll010to101(input));
  }
}
0