結果

問題 No.500 階乗電卓
ユーザー YamaKasaYamaKasa
提出日時 2018-09-24 15:42:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 54,620 KB
最終ジャッジ日時 2024-09-22 04:21:21
合計ジャッジ時間 6,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,168 KB
testcase_01 AC 138 ms
54,320 KB
testcase_02 AC 138 ms
54,124 KB
testcase_03 AC 140 ms
54,196 KB
testcase_04 AC 129 ms
53,996 KB
testcase_05 AC 130 ms
53,964 KB
testcase_06 AC 131 ms
54,232 KB
testcase_07 AC 129 ms
54,084 KB
testcase_08 AC 130 ms
53,988 KB
testcase_09 AC 134 ms
54,096 KB
testcase_10 AC 131 ms
54,100 KB
testcase_11 AC 130 ms
54,240 KB
testcase_12 AC 130 ms
54,168 KB
testcase_13 AC 131 ms
54,292 KB
testcase_14 AC 129 ms
53,992 KB
testcase_15 AC 133 ms
54,024 KB
testcase_16 AC 137 ms
54,224 KB
testcase_17 AC 137 ms
54,228 KB
testcase_18 AC 139 ms
54,184 KB
testcase_19 AC 138 ms
54,020 KB
testcase_20 AC 141 ms
54,108 KB
testcase_21 AC 137 ms
54,352 KB
testcase_22 AC 139 ms
54,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		scan.close();
		long x = 1;
		if(N >= 50) {
			System.out.println("000000000000");
			System.exit(0);
		}
		for(int i = 1; i <= N; i++) {
			x = x * i;
			String n = Long.toString(x);
			if(n.length() > 15) {
				x = Long.parseLong(n.substring(n.length() - 15, n.length()));
			}
		}
		String ans = Long.toString(x);
		if(ans.length() > 12) {
			ans = ans.substring(ans.length() - 12, ans.length());
		}
		System.out.println(ans);
	}
}
0