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