結果
問題 |
No.485 方程式のお勉強
|
ユーザー |
|
提出日時 | 2017-03-19 21:30:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-04 23:39:18 |
合計ジャッジ時間 | 1,314 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 6 WA * 7 |
ソースコード
first=input() split_first=first.split() A=int(split_first[0]) B=int(split_first[1]) x=int(B//A) if isinstance(x,int): print(x) else: print('NO')