結果
問題 | No.500 階乗電卓 |
ユーザー | YamaKasa |
提出日時 | 2018-09-24 15:34:29 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 515 bytes |
コンパイル時間 | 2,340 ms |
コンパイル使用メモリ | 75,244 KB |
実行使用メモリ | 64,100 KB |
最終ジャッジ日時 | 2024-09-22 04:08:42 |
合計ジャッジ時間 | 8,664 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 126 ms
54,232 KB |
testcase_05 | AC | 116 ms
52,976 KB |
testcase_06 | AC | 128 ms
54,024 KB |
testcase_07 | AC | 130 ms
54,516 KB |
testcase_08 | AC | 131 ms
54,012 KB |
testcase_09 | AC | 130 ms
54,188 KB |
testcase_10 | AC | 130 ms
54,132 KB |
testcase_11 | AC | 126 ms
54,080 KB |
testcase_12 | AC | 128 ms
54,032 KB |
testcase_13 | AC | 128 ms
54,256 KB |
testcase_14 | AC | 127 ms
53,968 KB |
testcase_15 | AC | 128 ms
54,068 KB |
testcase_16 | AC | 131 ms
54,180 KB |
testcase_17 | AC | 131 ms
54,260 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); scan.close(); long x = 1; 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); } }