結果
| 問題 |
No.304 鍵(1)
|
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-04-09 15:36:12 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 2,000 ms |
| コード長 | 372 bytes |
| コンパイル時間 | 7,914 ms |
| コンパイル使用メモリ | 168,204 KB |
| 実行使用メモリ | 44,556 KB |
| 平均クエリ数 | 309.17 |
| 最終ジャッジ日時 | 2025-04-09 15:36:32 |
| 合計ジャッジ時間 | 8,058 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (103 ミリ秒)。 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)
{
for(int i = 0; i < 1000; i++)
{
Console.WriteLine(String.Format("{0:D3}", i));
string ans = Console.ReadLine();
if(ans == "unlocked")
{
break;
}
}
}
}
Maeda