結果

問題 No.773 コンテスト
ユーザー ikykhh_3k6ikykhh_3k6
提出日時 2019-05-24 19:35:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 11,820 KB
実行使用メモリ 10,108 KB
最終ジャッジ日時 2023-10-17 12:02:21
合計ジャッジ時間 1,762 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,104 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 28 ms
10,104 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 27 ms
10,104 KB
testcase_08 AC 27 ms
10,104 KB
testcase_09 AC 28 ms
10,104 KB
testcase_10 AC 27 ms
10,104 KB
testcase_11 WA -
testcase_12 AC 28 ms
10,104 KB
testcase_13 AC 28 ms
10,104 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 27 ms
10,104 KB
testcase_18 WA -
testcase_19 AC 27 ms
10,104 KB
testcase_20 AC 28 ms
10,104 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = list(map(int,input().split()))

if A < 23 and B > 25:
    print(3)
elif A < 23 and 23 < B <= 25:
    print(B - 23)
elif 23 <= A <= 25 and B > 25:
    print(A - 23)
elif 23 <= A <= 25 and B <= 25:
    print(B - A)
elif A > 25:
    print(3)
else:
    print(0)
0