結果
| 問題 |
No.773 コンテスト
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-28 19:42:40 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 174 bytes |
| コンパイル時間 | 173 ms |
| コンパイル使用メモリ | 82,584 KB |
| 実行使用メモリ | 54,032 KB |
| 最終ジャッジ日時 | 2024-11-13 23:40:57 |
| 合計ジャッジ時間 | 2,135 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 21 |
ソースコード
A, B = map(int, input().split())
ans = 0
if A <= 23 <= B:
ans += 1
if A <= 24 <= B:
ans += 1
if A <= 25 <= B:
ans += 1
print(ans)