結果

問題 No.500 階乗電卓
ユーザー htensaihtensai
提出日時 2019-12-10 10:09:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 2,525 ms
コンパイル使用メモリ 75,408 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-06-23 22:30:02
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,284 KB
testcase_01 AC 124 ms
41,364 KB
testcase_02 AC 126 ms
41,600 KB
testcase_03 AC 117 ms
40,172 KB
testcase_04 AC 126 ms
41,352 KB
testcase_05 AC 115 ms
40,180 KB
testcase_06 AC 128 ms
41,356 KB
testcase_07 AC 126 ms
41,312 KB
testcase_08 AC 124 ms
41,504 KB
testcase_09 AC 125 ms
41,452 KB
testcase_10 AC 122 ms
41,152 KB
testcase_11 AC 120 ms
41,312 KB
testcase_12 AC 128 ms
41,464 KB
testcase_13 AC 127 ms
41,516 KB
testcase_14 AC 115 ms
40,404 KB
testcase_15 AC 131 ms
41,304 KB
testcase_16 AC 128 ms
41,392 KB
testcase_17 AC 127 ms
41,160 KB
testcase_18 AC 124 ms
41,388 KB
testcase_19 AC 124 ms
41,040 KB
testcase_20 AC 130 ms
41,212 KB
testcase_21 AC 111 ms
40,472 KB
testcase_22 AC 113 ms
39,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        if (1000000 <= n) {
            System.out.println("000000000000");
        } else {
            long mod = 1000000000000L;
            long ans = 1;
            boolean flag = false;
            for (int i = 1; i <= n; i++) {
                ans *= i;
                if (ans >= mod) {
                    flag = true;
                }
                ans %= mod;
            }
            if (flag) {
                System.out.println(String.format("%012d", ans));
            } else {
                System.out.println(ans);
            }
        }
   }
}
0