結果
問題 |
No.500 階乗電卓
|
ユーザー |
![]() |
提出日時 | 2018-09-18 09:13:47 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 194 bytes |
コンパイル時間 | 66 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-18 07:54:21 |
合計ジャッジ時間 | 1,281 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
x=int(input()) if x>100: print("000000000000") else: for i in range (1,x): x*=i s=str(x) for i in range(max(0,len(s)-12),len(s)): print(s[i],end="") print("")