結果

問題 No.500 階乗電卓
ユーザー fal_rndfal_rnd
提出日時 2017-04-07 22:37:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-06-25 02:49:34
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,076 KB
testcase_01 AC 135 ms
41,104 KB
testcase_02 AC 120 ms
40,372 KB
testcase_03 AC 136 ms
41,436 KB
testcase_04 AC 136 ms
41,636 KB
testcase_05 AC 132 ms
41,220 KB
testcase_06 AC 135 ms
41,312 KB
testcase_07 AC 135 ms
41,360 KB
testcase_08 AC 137 ms
41,736 KB
testcase_09 AC 132 ms
41,152 KB
testcase_10 AC 132 ms
41,240 KB
testcase_11 AC 137 ms
41,532 KB
testcase_12 AC 135 ms
41,284 KB
testcase_13 AC 134 ms
41,232 KB
testcase_14 AC 123 ms
40,084 KB
testcase_15 AC 122 ms
41,324 KB
testcase_16 AC 135 ms
41,464 KB
testcase_17 AC 132 ms
41,172 KB
testcase_18 AC 135 ms
41,192 KB
testcase_19 AC 134 ms
41,584 KB
testcase_20 AC 137 ms
41,080 KB
testcase_21 AC 137 ms
41,104 KB
testcase_22 AC 135 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	
	static final Scanner s=new Scanner(System.in);
	
	public static void main(String[] __){
		long res=1,n=s.nextLong();
		
		boolean f=false;
		for(int i=2;i<=n&&res!=0;i++) {
			res*=i;
			
			f|=res>1000000000000L;
			res%=1000000000000L;
		}
		System.out.printf(f?"%012d\n":"%d\n",res);
	}
}
0