結果

問題 No.773 コンテスト
ユーザー ikykhh_3k6ikykhh_3k6
提出日時 2019-05-24 19:31:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 11,752 KB
実行使用メモリ 10,088 KB
最終ジャッジ日時 2023-10-17 12:01:58
合計ジャッジ時間 1,847 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 28 ms
10,012 KB
testcase_05 AC 28 ms
10,012 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 27 ms
10,012 KB
testcase_09 AC 27 ms
10,012 KB
testcase_10 AC 28 ms
10,012 KB
testcase_11 WA -
testcase_12 AC 28 ms
10,012 KB
testcase_13 AC 27 ms
10,012 KB
testcase_14 WA -
testcase_15 AC 27 ms
10,012 KB
testcase_16 WA -
testcase_17 AC 28 ms
10,012 KB
testcase_18 WA -
testcase_19 AC 27 ms
10,012 KB
testcase_20 AC 28 ms
10,012 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:
    print(A - 23)
else:
    print(0)
0