結果

問題 No.773 コンテスト
ユーザー HAGI_TARO
提出日時 2021-09-16 12:37:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 53,708 KB
最終ジャッジ日時 2024-06-29 14:22:28
合計ジャッジ時間 1,601 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
c = list(range(a,b+1))
ans = 3
if 23 in c:
    ans -= 1
if 24 in c:
    ans -= 1
if 25 in c:
    ans -= 1
print(ans)
0