結果
問題 | No.537 ユーザーID |
ユーザー | 𖧱𖦸𖥩𖥣𖥩𖥣 |
提出日時 | 2024-06-13 09:31:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 143 bytes |
コンパイル時間 | 559 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-13 09:31:45 |
合計ジャッジ時間 | 5,863 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 WA * 13 |
ソースコード
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 if n != 1: sum *= 2 print(sum)