結果
問題 |
No.159 刺さらないUSB
|
ユーザー |
|
提出日時 | 2017-08-15 00:26:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 1,000 ms |
コード長 | 230 bytes |
コンパイル時間 | 2,407 ms |
コンパイル使用メモリ | 111,936 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-07-02 00:05:02 |
合計ジャッジ時間 | 2,158 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; class Program { static void Main() { double[] pq = Console.ReadLine().Split(' ').Select(double.Parse).ToArray(); Console.WriteLine(pq[1] < 2 - 1 / pq[0] ?"YES" : "NO"); } }