結果

問題 No.773 コンテスト
ユーザー Apoi
提出日時 2018-12-21 02:32:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-25 09:16:14
合計ジャッジ時間 1,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 4 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
a, b = map(int, input().split())
p = 3
date = [23, 24, 25]
for i in range(a, b + 1):
    if i in date == True:
        p -= 1
print(p)
0