結果
| 問題 | No.2224 UFO Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-04-23 02:13:09 |
| 言語 | C# (.NET 10.0.400 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 32 ms / 2,000 ms |
| + 273µs | |
| コード長 | 276 bytes |
| 記録 | |
| コンパイル時間 | 10,867 ms |
| コンパイル使用メモリ | 172,700 KB |
| 実行使用メモリ | 31,360 KB |
| 最終ジャッジ日時 | 2026-09-20 09:47:23 |
| 合計ジャッジ時間 | 12,963 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge6_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (233 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System;
class Program
{
static void Main(string[] args)
{
string S = Console.ReadLine();
double T = 0;
if (S[0] == 'x') T = Math.Pow(2, 32) - int.Parse(S.Substring(1));
else T = int.Parse(S);
Console.WriteLine(T);
}
}