結果

問題 No.793 うし数列 2
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-04 13:09:08
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 364 bytes
コンパイル時間 2,942 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 61,316 KB
最終ジャッジ日時 2024-10-04 18:45:05
合計ジャッジ時間 7,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
60,836 KB
testcase_01 AC 101 ms
52,996 KB
testcase_02 AC 109 ms
53,992 KB
testcase_03 AC 107 ms
54,224 KB
testcase_04 AC 108 ms
53,996 KB
testcase_05 AC 109 ms
53,104 KB
testcase_06 AC 113 ms
52,840 KB
testcase_07 AC 107 ms
52,884 KB
testcase_08 AC 116 ms
53,940 KB
testcase_09 AC 116 ms
54,080 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	long n = sc.nextLong();
	    	sc.close();

	    	long e = 1;
	    	for (int i = 0; i < n; i ++) {
	    		e = (e * 10 + 3) % 1000000007;
	    	}

	    	System.out.println(e % 1000000007);
	    	}

}
0