結果
| 問題 | No.1157 Many Quotients easy |
| ユーザー |
|
| 提出日時 | 2021-09-02 02:05:03 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 124 bytes |
| 記録 | |
| コンパイル時間 | 376 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-05-22 22:19:41 |
| 合計ジャッジ時間 | 4,096 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 WA * 15 |
ソースコード
n=int(input())
ans=0
lst=[]
for i in range(1,int(n**.5)+1):
lst.append(n//i)
lst.append(n-n//i)
print(len(set(lst)))