結果
問題 |
No.138 化石のバージョン
|
ユーザー |
|
提出日時 | 2020-06-20 21:45:26 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 424 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 102,912 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-07-03 17:34:13 |
合計ジャッジ時間 | 2,985 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 WA * 6 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace _0138 { class Program { static void Main(string[] args) { var s = int.Parse(string.Join("",Console.ReadLine().Split('.'))); var x = int.Parse(string.Join("",Console.ReadLine().Split('.'))); if(x <= s){ Console.WriteLine("YES"); }else{ Console.WriteLine("NO"); } } } }