結果
| 問題 | No.485 方程式のお勉強 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-19 21:41:15 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| コード長 | 142 bytes |
| 記録 | |
| コンパイル時間 | 386 ms |
| コンパイル使用メモリ | 20,784 KB |
| 実行使用メモリ | 15,356 KB |
| 最終ジャッジ日時 | 2026-04-20 02:19:48 |
| 合計ジャッジ時間 | 4,563 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 13 |
ソースコード
first=input()
split_first=first.split()
A=int(split_first[0])
B=int(split_first[1])
x=int(B//A)
if B%A==0:
print(x)
else:
print('NO')