結果

問題 No.1799 Summer Day
ユーザー AsahiAsahi
提出日時 2023-02-04 19:14:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-07-03 15:51:39
合計ジャッジ時間 5,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,540 KB
testcase_01 AC 102 ms
40,316 KB
testcase_02 AC 123 ms
41,564 KB
testcase_03 AC 112 ms
41,428 KB
testcase_04 AC 118 ms
41,700 KB
testcase_05 AC 125 ms
41,464 KB
testcase_06 AC 122 ms
41,624 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 123 ms
41,352 KB
testcase_16 WA -
testcase_17 AC 121 ms
41,752 KB
testcase_18 WA -
testcase_19 AC 111 ms
41,960 KB
testcase_20 AC 114 ms
41,600 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
import java.util.stream.Stream;

public class Main{
    /* 入出力 */
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    /* 定数 */
    static final int [] y4 = {0,1,0,-1};
    static final int [] x4 = {1,0,-1,0};
    static final int  INF1 = Integer.MAX_VALUE;
    static final long INF2 = Long.MAX_VALUE;
    static final long MOD1 = (long)1e9+7;
    static final long MOD2 = 998244353;
    /* Main */
    public static void main(String[] args) throws IOException{
        /*
         * 下限<=ans && ans<=上限
         */
        long n = sc.nextLong();
        long S = sc.nextLong();
        long min = 25*n;
        long max = 30*n;
        if(min <= S && S < max) output.print("Yes");
        else output.print("No");
        output.flush();
    }
}
0