結果

問題 No.1799 Summer Day
ユーザー ripityripity
提出日時 2022-01-07 22:50:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-04-26 18:51:48
合計ジャッジ時間 5,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,160 KB
testcase_01 AC 108 ms
40,288 KB
testcase_02 AC 112 ms
40,164 KB
testcase_03 AC 107 ms
40,812 KB
testcase_04 AC 106 ms
40,724 KB
testcase_05 AC 121 ms
41,044 KB
testcase_06 AC 104 ms
40,156 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 118 ms
41,200 KB
testcase_16 AC 115 ms
41,008 KB
testcase_17 AC 111 ms
40,148 KB
testcase_18 AC 111 ms
40,556 KB
testcase_19 AC 113 ms
40,564 KB
testcase_20 AC 111 ms
40,180 KB
testcase_21 AC 112 ms
40,496 KB
testcase_22 AC 119 ms
41,076 KB
testcase_23 AC 121 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        PrintWriter pw = new PrintWriter(System.out);
        int N = sc.nextInt();
        int S = sc.nextInt();
        int X = (S+N-1)/N;
        pw.println( 25 <= X && X < 30 ? "Yes" : "No" );
        
        pw.flush();
        
    }
    
}
0