結果
| 問題 | No.2750 Number of Prime Factors |
| コンテスト | |
| ユーザー |
Taiki0715
|
| 提出日時 | 2024-05-10 21:42:32 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 146 bytes |
| 記録 | |
| コンパイル時間 | 124 ms |
| コンパイル使用メモリ | 85,264 KB |
| 実行使用メモリ | 54,000 KB |
| 最終ジャッジ日時 | 2026-05-27 08:29:36 |
| 合計ジャッジ時間 | 1,594 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 17 WA * 2 |
ソースコード
p=[2,3,5,7,11,13,17,19,23,29,31,37,41,47,53,59]
n=int(input())
now=1
for i in range(len(p)):
if now*p[i]>n:
print(i)
exit(0)
now*=p[i]
Taiki0715