結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | huffman56 |
提出日時 | 2022-12-25 11:00:56 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,107 bytes |
コンパイル時間 | 816 ms |
コンパイル使用メモリ | 103,296 KB |
実行使用メモリ | 18,432 KB |
最終ジャッジ日時 | 2024-04-29 16:54:45 |
合計ジャッジ時間 | 2,077 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
17,664 KB |
testcase_01 | AC | 22 ms
17,408 KB |
testcase_02 | AC | 22 ms
17,536 KB |
testcase_03 | AC | 22 ms
17,408 KB |
testcase_04 | AC | 22 ms
17,664 KB |
testcase_05 | AC | 22 ms
17,152 KB |
testcase_06 | AC | 22 ms
17,536 KB |
testcase_07 | WA | - |
testcase_08 | AC | 23 ms
17,280 KB |
testcase_09 | WA | - |
testcase_10 | AC | 22 ms
17,280 KB |
testcase_11 | AC | 22 ms
17,536 KB |
testcase_12 | AC | 22 ms
17,664 KB |
testcase_13 | AC | 27 ms
18,432 KB |
testcase_14 | AC | 26 ms
18,304 KB |
testcase_15 | AC | 26 ms
18,432 KB |
testcase_16 | AC | 26 ms
18,176 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace _0446 { class Program { static void Main(string[] args) { var a = Console.ReadLine(); var b = Console.ReadLine(); int x = 0; int y = 0; var f = false; // 文字列が入っていないかをチェック if (int.TryParse(a, out x) && int.TryParse(b, out y)) { // 0<= a,b <= 12345以内かつ、先頭数値が0ではないか if(x >= 0 && x <= 12345 && y >= 0 && y <= 12345) { if (a.Length >= 2 && a.StartsWith("0") && b.Length >= 2 && b.StartsWith("0")) { Console.WriteLine("NG"); } else { Console.WriteLine("OK"); } } else { Console.WriteLine("NG"); } } else { Console.WriteLine("NG"); } } } }