結果

問題 No.1799 Summer Day
ユーザー ks2mks2m
提出日時 2022-01-07 21:22:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-11-14 08:21:43
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int s = sc.nextInt();
		sc.close();

		if (25 <= s && (s + n - 1) / n < 30) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0