結果
問題 | No.138 化石のバージョン |
ユーザー | fujita |
提出日時 | 2023-05-11 11:10:02 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 831 bytes |
コンパイル時間 | 8,131 ms |
コンパイル使用メモリ | 168,308 KB |
実行使用メモリ | 187,872 KB |
最終ジャッジ日時 | 2024-05-05 13:02:34 |
合計ジャッジ時間 | 13,099 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
32,024 KB |
testcase_01 | AC | 67 ms
31,648 KB |
testcase_02 | AC | 67 ms
31,776 KB |
testcase_03 | AC | 66 ms
32,020 KB |
testcase_04 | AC | 67 ms
31,660 KB |
testcase_05 | AC | 69 ms
31,904 KB |
testcase_06 | AC | 67 ms
31,656 KB |
testcase_07 | AC | 67 ms
31,808 KB |
testcase_08 | AC | 67 ms
32,024 KB |
testcase_09 | AC | 67 ms
32,168 KB |
testcase_10 | AC | 67 ms
31,648 KB |
testcase_11 | AC | 67 ms
31,860 KB |
testcase_12 | WA | - |
testcase_13 | AC | 67 ms
31,780 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 68 ms
32,036 KB |
testcase_20 | AC | 68 ms
31,892 KB |
testcase_21 | RE | - |
testcase_22 | AC | 68 ms
31,656 KB |
testcase_23 | AC | 67 ms
31,740 KB |
testcase_24 | AC | 67 ms
32,044 KB |
testcase_25 | AC | 68 ms
32,052 KB |
testcase_26 | AC | 67 ms
31,776 KB |
testcase_27 | AC | 67 ms
31,780 KB |
testcase_28 | AC | 66 ms
32,020 KB |
testcase_29 | WA | - |
testcase_30 | AC | 67 ms
32,164 KB |
testcase_31 | WA | - |
testcase_32 | AC | 67 ms
32,172 KB |
testcase_33 | WA | - |
testcase_34 | AC | 66 ms
31,664 KB |
testcase_35 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (95 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System.Collections.Generic; using System; using System.Drawing; namespace yukicoder { class Program { static void Main(string[] args) { var s = Console.ReadLine(); var str = Console.ReadLine(); List<int> list = new List<int>(6); List<int> list2 = new List<int>(6); int x = 0; while (s.Substring(x, s.IndexOf(".")) == str.Substring(x, str.IndexOf("."))) { x++; } int a = int.Parse(s.Substring(x, 1)); int b = int.Parse(str.Substring(x, 1)); if (a < b || a == b) { Console.WriteLine("NO"); } else { Console.WriteLine("YES"); } } } }