結果
| 問題 | No.2051 Divide |
| コンテスト | |
| ユーザー |
shika_126
|
| 提出日時 | 2022-08-26 03:30:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 116 bytes |
| コンパイル時間 | 268 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 17,440 KB |
| 最終ジャッジ日時 | 2024-10-13 07:12:31 |
| 合計ジャッジ時間 | 4,509 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 TLE * 1 -- * 7 |
ソースコード
n,m = map(int,input().split())
a = 0
i = 1
while i*m <= n:
if n % (i*m) == 0:
a += 1
i += 1
print(a)
shika_126