結果
| 問題 | No.1047 Zero (Novice) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-05-08 22:06:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 239 bytes |
| 記録 | |
| コンパイル時間 | 369 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 20,740 KB |
| 最終ジャッジ日時 | 2026-03-25 08:43:36 |
| 合計ジャッジ時間 | 3,525 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 3 WA * 10 RE * 4 |
ソースコード
from sys import stdin
def main():
input = lambda: stdin.readline()[:-1]
A, B = map(int, input().split())
if A >= 0 and B > 0 and B % A:
print(-1)
return
ans = abs(B // A)
print(max(1, ans))
main()