結果

問題 No.500 階乗電卓
ユーザー YamaKasaYamaKasa
提出日時 2018-09-24 15:41:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 56,188 KB
最終ジャッジ日時 2024-09-22 04:20:10
合計ジャッジ時間 5,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 128 ms
54,292 KB
testcase_05 AC 126 ms
54,176 KB
testcase_06 AC 129 ms
54,420 KB
testcase_07 AC 128 ms
54,176 KB
testcase_08 AC 128 ms
54,128 KB
testcase_09 AC 131 ms
54,148 KB
testcase_10 AC 128 ms
54,140 KB
testcase_11 AC 126 ms
53,908 KB
testcase_12 AC 128 ms
54,100 KB
testcase_13 AC 126 ms
53,948 KB
testcase_14 AC 128 ms
54,228 KB
testcase_15 AC 128 ms
54,208 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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