結果
問題 |
No.1462 最弱WEAKER
|
ユーザー |
![]() |
提出日時 | 2025-04-11 17:24:18 |
言語 | C# (.NET 8.0.404) |
結果 |
WA
|
実行時間 | - |
コード長 | 261 bytes |
コンパイル時間 | 6,854 ms |
コンパイル使用メモリ | 170,796 KB |
実行使用メモリ | 187,972 KB |
最終ジャッジ日時 | 2025-04-11 17:24:29 |
合計ジャッジ時間 | 9,071 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 18 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (95 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); if(n%2 == 0) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); } } }