結果

問題 No.793 うし数列 2
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-30 20:29:21
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 614 bytes
コンパイル時間 4,064 ms
コンパイル使用メモリ 87,820 KB
実行使用メモリ 64,920 KB
最終ジャッジ日時 2024-06-28 08:59:41
合計ジャッジ時間 8,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,092 KB
testcase_01 AC 133 ms
54,212 KB
testcase_02 AC 135 ms
53,924 KB
testcase_03 AC 137 ms
54,040 KB
testcase_04 AC 135 ms
54,280 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Collectors;
import java.util.stream.IntStream;

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

    // String 1つ分を読み込む
    int n = Integer.parseInt(sc.next());
    String En = "1" + IntStream.range(0, n).mapToObj(i -> "3").collect(Collectors.joining(""));
    System.out.println(Long.parseLong(En) % 1000000007);
  }
}
0