結果

問題 No.1277 級数入り級数
ユーザー 遭難者遭難者
提出日時 2020-10-20 19:05:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 515 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 75,384 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-07-21 09:05:01
合計ジャッジ時間 19,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,728 KB
testcase_01 AC 130 ms
40,852 KB
testcase_02 AC 129 ms
40,920 KB
testcase_03 AC 130 ms
40,872 KB
testcase_04 AC 115 ms
39,916 KB
testcase_05 AC 130 ms
40,896 KB
testcase_06 AC 131 ms
41,080 KB
testcase_07 AC 127 ms
40,680 KB
testcase_08 AC 133 ms
40,996 KB
testcase_09 AC 344 ms
41,084 KB
testcase_10 AC 326 ms
40,676 KB
testcase_11 AC 368 ms
41,068 KB
testcase_12 AC 283 ms
40,904 KB
testcase_13 AC 213 ms
40,816 KB
testcase_14 AC 387 ms
40,832 KB
testcase_15 AC 515 ms
41,132 KB
testcase_16 AC 408 ms
40,648 KB
testcase_17 AC 404 ms
39,860 KB
testcase_18 AC 504 ms
41,232 KB
testcase_19 AC 497 ms
40,064 KB
testcase_20 AC 199 ms
40,772 KB
testcase_21 AC 321 ms
41,100 KB
testcase_22 AC 370 ms
40,944 KB
testcase_23 AC 246 ms
41,024 KB
testcase_24 AC 483 ms
40,800 KB
testcase_25 AC 419 ms
41,040 KB
testcase_26 AC 515 ms
40,536 KB
testcase_27 AC 163 ms
41,092 KB
testcase_28 AC 378 ms
40,956 KB
testcase_29 AC 196 ms
40,888 KB
testcase_30 AC 350 ms
41,120 KB
testcase_31 AC 436 ms
41,124 KB
testcase_32 AC 309 ms
41,152 KB
testcase_33 AC 511 ms
40,920 KB
testcase_34 AC 380 ms
41,132 KB
testcase_35 AC 189 ms
41,208 KB
testcase_36 AC 215 ms
40,620 KB
testcase_37 AC 215 ms
40,632 KB
testcase_38 AC 215 ms
41,056 KB
testcase_39 AC 471 ms
39,872 KB
testcase_40 AC 193 ms
40,844 KB
testcase_41 AC 446 ms
41,216 KB
testcase_42 AC 426 ms
40,912 KB
testcase_43 AC 172 ms
41,216 KB
testcase_44 AC 155 ms
41,120 KB
testcase_45 AC 311 ms
40,960 KB
testcase_46 AC 306 ms
40,880 KB
testcase_47 AC 315 ms
40,956 KB
testcase_48 AC 315 ms
40,668 KB
testcase_49 AC 376 ms
41,172 KB
testcase_50 AC 130 ms
40,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int n = Integer.parseInt(sc.next());
		long q = 1;
		ou.println(q);
		for(int i = 2 ; i <= n ; i++){
			q *= i;
			q %= (int)Math.pow(10 , 9) + 7;
		}
		ou.println(q);
		ou.println(n);
		ou.flush();
		sc.close();
	}
}
0