結果
問題 |
No.1799 Summer Day
|
ユーザー |
![]() |
提出日時 | 2025-07-06 23:33:03 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 366 bytes |
コンパイル時間 | 3,817 ms |
コンパイル使用メモリ | 111,048 KB |
実行使用メモリ | 26,396 KB |
最終ジャッジ日時 | 2025-07-06 23:33:09 |
合計ジャッジ時間 | 5,636 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 WA * 1 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class Program { static void Main() { var arr = Console.ReadLine().Trim().Split(' '); var n = float.Parse(arr[0]); var s = float.Parse(arr[1]); if (s >= 25.0 && s / n <= 29.0) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } } }