結果
問題 | No.537 ユーザーID |
ユーザー | 𖧱𖦸𖥩𖥣𖥩𖥣 |
提出日時 | 2024-06-13 09:26:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 122 bytes |
コンパイル時間 | 495 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-13 09:26:39 |
合計ジャッジ時間 | 5,915 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 16 WA * 16 |
ソースコード
n = int(input()) sum = 1 for i in range(2, int(n**0.5+1)): c = 1 while n%i == 0: n //= i c += 1 sum *= c print(sum)