結果

問題 No.500 階乗電卓
ユーザー htensaihtensai
提出日時 2019-11-17 20:47:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-09-25 06:07:46
合計ジャッジ時間 6,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,124 KB
testcase_01 AC 132 ms
53,916 KB
testcase_02 AC 133 ms
53,992 KB
testcase_03 AC 134 ms
54,044 KB
testcase_04 AC 134 ms
54,328 KB
testcase_05 AC 133 ms
53,960 KB
testcase_06 AC 132 ms
53,840 KB
testcase_07 AC 132 ms
54,244 KB
testcase_08 AC 132 ms
54,212 KB
testcase_09 AC 131 ms
54,212 KB
testcase_10 AC 132 ms
54,232 KB
testcase_11 AC 132 ms
54,128 KB
testcase_12 AC 131 ms
54,020 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 130 ms
54,072 KB
testcase_16 AC 130 ms
54,140 KB
testcase_17 AC 132 ms
53,976 KB
testcase_18 AC 131 ms
54,100 KB
testcase_19 AC 127 ms
53,936 KB
testcase_20 AC 132 ms
54,048 KB
testcase_21 AC 131 ms
54,124 KB
testcase_22 AC 132 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final long MOD = 1000000000000L;
 	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		if (n < 100 && kaijo(n) != 0) {
		    System.out.println(kaijo(n));
		} else {
		    System.out.println("000000000000");
		}
	}
	
	static long kaijo (long x) {
	    if (x <= 1) {
	        return 1;
	    } else {
	        return x * kaijo(x - 1) %  MOD;
	    }
	}
}


0