結果
問題 | No.500 階乗電卓 |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-24 03:08:01 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 675 bytes |
コンパイル時間 | 2,322 ms |
コンパイル使用メモリ | 75,948 KB |
実行使用メモリ | 54,512 KB |
最終ジャッジ日時 | 2024-10-11 06:03:04 |
合計ジャッジ時間 | 6,440 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 134 ms
41,568 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 134 ms
41,476 KB |
testcase_12 | AC | 135 ms
41,628 KB |
testcase_13 | AC | 138 ms
41,164 KB |
testcase_14 | AC | 134 ms
41,584 KB |
testcase_15 | AC | 136 ms
41,204 KB |
testcase_16 | AC | 135 ms
41,368 KB |
testcase_17 | AC | 137 ms
41,440 KB |
testcase_18 | AC | 134 ms
41,136 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
import java.util.*; import static java.lang.System.*; import java.math.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = sc.nextInt(); if (n >= 50) {out.println("000000000000");} else { BigInteger bi = new BigInteger("1"); for (int i=1; i<=n; i++) { BigInteger temp = new BigInteger(String.valueOf(i)); bi = bi.multiply(temp); } StringBuilder ans = new StringBuilder(bi.toString()); if (ans.length() < 12) { while (ans.length() < 12) { ans.insert(0,"0"); } } else if (ans.length() > 12) { ans.delete(0,ans.length()-12); } out.println(ans); } } }