結果

問題 No.500 階乗電卓
ユーザー kuramubonnkuramubonn
提出日時 2023-02-04 17:29:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 1,952 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-07-03 14:23:51
合計ジャッジ時間 5,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,476 KB
testcase_01 AC 129 ms
54,212 KB
testcase_02 AC 132 ms
54,356 KB
testcase_03 AC 132 ms
54,108 KB
testcase_04 AC 131 ms
54,280 KB
testcase_05 AC 129 ms
54,048 KB
testcase_06 AC 133 ms
54,160 KB
testcase_07 AC 127 ms
53,992 KB
testcase_08 AC 129 ms
53,996 KB
testcase_09 AC 119 ms
52,820 KB
testcase_10 AC 128 ms
54,036 KB
testcase_11 AC 128 ms
54,172 KB
testcase_12 AC 130 ms
54,112 KB
testcase_13 AC 130 ms
53,860 KB
testcase_14 AC 129 ms
54,072 KB
testcase_15 AC 130 ms
54,328 KB
testcase_16 AC 128 ms
54,220 KB
testcase_17 AC 133 ms
54,076 KB
testcase_18 AC 127 ms
53,756 KB
testcase_19 AC 126 ms
53,968 KB
testcase_20 AC 129 ms
54,132 KB
testcase_21 AC 129 ms
54,076 KB
testcase_22 AC 129 ms
53,888 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;
		if(num > 14 && String.valueOf(data).length() < 12) {
			for(int i =  String.valueOf(data).length() ; i < 12 ; i++) 
				System.out.print("0");
		}
		System.out.println(data);
	}
}
0