結果
| 問題 | No.2051 Divide |
| コンテスト | |
| ユーザー |
shika_126
|
| 提出日時 | 2022-08-26 03:19:47 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 117 bytes |
| 記録 | |
| コンパイル時間 | 327 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 21,632 KB |
| 最終ジャッジ日時 | 2026-04-30 15:31:13 |
| 合計ジャッジ時間 | 7,161 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 TLE * 2 -- * 19 |
ソースコード
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