結果

問題 No.500 階乗電卓
ユーザー kuramubonnkuramubonn
提出日時 2023-02-04 17:18:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-07-03 14:15:01
合計ジャッジ時間 5,440 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,372 KB
testcase_01 AC 96 ms
39,756 KB
testcase_02 AC 103 ms
40,216 KB
testcase_03 AC 112 ms
41,356 KB
testcase_04 AC 121 ms
41,400 KB
testcase_05 AC 106 ms
40,956 KB
testcase_06 AC 112 ms
41,304 KB
testcase_07 AC 102 ms
40,312 KB
testcase_08 AC 110 ms
41,416 KB
testcase_09 AC 100 ms
40,252 KB
testcase_10 AC 112 ms
41,292 KB
testcase_11 AC 114 ms
41,424 KB
testcase_12 AC 115 ms
41,328 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 114 ms
41,160 KB
testcase_16 AC 107 ms
40,424 KB
testcase_17 AC 114 ms
41,504 KB
testcase_18 AC 112 ms
41,192 KB
testcase_19 AC 120 ms
41,340 KB
testcase_20 AC 99 ms
39,960 KB
testcase_21 AC 112 ms
41,416 KB
testcase_22 AC 100 ms
40,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long num = sc.nextLong(),data = 1;
		if(num >= 50) {
			System.out.println("000000000000");
			return;
		}
		long mod = (long)100000 * 10000000;
		for(int i = 1;i <= num ; i++) data = (((long)data % mod) * i) % (long)mod;
		System.out.println(data);
	}
}
0