結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
clearbook
|
| 提出日時 | 2019-12-10 22:39:11 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 1,000 ms |
| + 983µs | |
| コード長 | 98 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-07-28 11:09:07 |
| 合計ジャッジ時間 | 2,839 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
A = int(input())
B = int(input())
if B // A < 80 and B // A > 20:
print(1)
else:
print(2)
clearbook