結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
clearbook
|
| 提出日時 | 2019-12-10 22:37:31 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 98 bytes |
| 記録 | |
| コンパイル時間 | 470 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-09 12:38:36 |
| 合計ジャッジ時間 | 2,721 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 WA * 1 |
ソースコード
A = int(input())
B = int(input())
if B // A < 55 and B // A > 35:
print(1)
else:
print(2)
clearbook