結果

問題 No.1799 Summer Day
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-11 07:57:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-11-14 11:25:42
合計ジャッジ時間 2,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,140 KB
testcase_01 AC 36 ms
52,416 KB
testcase_02 AC 36 ms
51,800 KB
testcase_03 AC 35 ms
52,028 KB
testcase_04 AC 37 ms
52,876 KB
testcase_05 AC 36 ms
53,420 KB
testcase_06 AC 36 ms
52,492 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,604 KB
testcase_09 AC 36 ms
52,556 KB
testcase_10 AC 36 ms
52,484 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 36 ms
52,836 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 36 ms
52,060 KB
testcase_17 AC 35 ms
52,040 KB
testcase_18 AC 36 ms
52,472 KB
testcase_19 AC 36 ms
52,060 KB
testcase_20 AC 37 ms
52,236 KB
testcase_21 AC 36 ms
52,348 KB
testcase_22 AC 36 ms
51,828 KB
testcase_23 AC 36 ms
51,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s=map(int,input().split())

if  25 + (n-1) <= s < 29*n:
    print('Yes')
else:
    print('No')
0