結果

問題 No.1799 Summer Day
ユーザー horitaka1999horitaka1999
提出日時 2022-01-12 22:14:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 53,604 KB
最終ジャッジ日時 2024-11-15 14:34:47
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,092 KB
testcase_01 AC 34 ms
53,216 KB
testcase_02 AC 33 ms
52,476 KB
testcase_03 AC 32 ms
53,244 KB
testcase_04 AC 34 ms
51,676 KB
testcase_05 AC 33 ms
52,080 KB
testcase_06 AC 34 ms
52,152 KB
testcase_07 WA -
testcase_08 AC 33 ms
52,844 KB
testcase_09 AC 34 ms
52,020 KB
testcase_10 AC 39 ms
53,284 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 35 ms
53,492 KB
testcase_14 WA -
testcase_15 AC 33 ms
52,128 KB
testcase_16 AC 33 ms
52,712 KB
testcase_17 AC 35 ms
52,832 KB
testcase_18 AC 34 ms
51,688 KB
testcase_19 AC 35 ms
52,036 KB
testcase_20 AC 34 ms
52,944 KB
testcase_21 AC 33 ms
52,512 KB
testcase_22 AC 34 ms
52,116 KB
testcase_23 AC 35 ms
53,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S = map(int,input().split())
x = (25*N-S + 24-1)//24
y = (29 * N -S)//5
if y >= 0 and x <= y and (0 <= x < N or 0 <= y < N):
    print('Yes')
else:
    print('No')
0