結果
問題 | No.793 うし数列 2 |
ユーザー | Yosuke Yamaguchi |
提出日時 | 2021-01-30 20:28:00 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 4,142 ms |
コンパイル使用メモリ | 80,732 KB |
実行使用メモリ | 64,896 KB |
最終ジャッジ日時 | 2024-06-28 08:58:29 |
合計ジャッジ時間 | 9,186 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
53,972 KB |
testcase_01 | AC | 142 ms
54,392 KB |
testcase_02 | AC | 139 ms
54,240 KB |
testcase_03 | AC | 140 ms
54,336 KB |
testcase_04 | AC | 138 ms
54,136 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 | - |
ソースコード
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(Integer.parseInt(En) % 1000000007); } }