結果

問題 No.500 階乗電卓
ユーザー 101000010101000010
提出日時 2017-05-17 03:23:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 77,772 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-25 03:01:38
合計ジャッジ時間 7,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,376 KB
testcase_01 AC 136 ms
41,144 KB
testcase_02 AC 137 ms
41,236 KB
testcase_03 AC 136 ms
41,184 KB
testcase_04 AC 133 ms
41,428 KB
testcase_05 AC 134 ms
41,384 KB
testcase_06 AC 135 ms
41,284 KB
testcase_07 AC 135 ms
41,136 KB
testcase_08 AC 134 ms
41,280 KB
testcase_09 AC 134 ms
40,968 KB
testcase_10 AC 131 ms
41,276 KB
testcase_11 AC 131 ms
41,176 KB
testcase_12 AC 135 ms
41,280 KB
testcase_13 AC 126 ms
41,328 KB
testcase_14 AC 131 ms
41,080 KB
testcase_15 AC 133 ms
41,252 KB
testcase_16 AC 131 ms
41,312 KB
testcase_17 AC 133 ms
41,388 KB
testcase_18 AC 131 ms
41,068 KB
testcase_19 AC 133 ms
41,056 KB
testcase_20 AC 135 ms
41,208 KB
testcase_21 AC 134 ms
41,184 KB
testcase_22 AC 136 ms
41,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No500 {
    public static void main(String[] args){
        long N=0;
        Scanner sc = new Scanner(System.in);
        N = sc.nextLong();
        
        culc(N);
    }
    static void culc(long N){
        long mod = (long) Math.pow(10, 12); //1,000,000,000,000
        boolean moreThan12Digits = false;
        long ans=1;
        
        for(int i=2; i<=N; i++){    
            ans *= i;
            if(moreThan12Digits && ans == 0)break;  //下12桁が全て0になったら終了
            if(ans >= mod){
                ans %= mod;
                moreThan12Digits = true;
            }
        }
        if(moreThan12Digits){
            System.out.printf("%012d\n", ans);
        }else{
            System.out.println(ans);
        }
    }
}
0