結果
| 問題 | No.337 P versus NP |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-05 15:36:53 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 394 bytes |
| 記録 | |
| コンパイル時間 | 5,245 ms |
| コンパイル使用メモリ | 171,120 KB |
| 実行使用メモリ | 193,044 KB |
| 最終ジャッジ日時 | 2026-07-16 08:13:19 |
| 合計ジャッジ時間 | 7,148 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 WA * 7 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (98 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
class Program
{
static void Main(string[] args)
{
string[] inputNum = Console.ReadLine()!.Split(' ');
decimal leftNum = decimal.Parse(inputNum[0]);
decimal lightNum = decimal.Parse(inputNum[1]);
if (leftNum == lightNum)
{
Console.WriteLine("=");
}
else
{
Console.WriteLine("!=");
}
}
}