結果
問題 | No.2535 多重同値 |
ユーザー | volhalink |
提出日時 | 2023-11-10 23:11:23 |
言語 | C# (.NET 8.0.203) |
結果 |
TLE
|
実行時間 | - |
コード長 | 768 bytes |
コンパイル時間 | 10,097 ms |
コンパイル使用メモリ | 171,412 KB |
実行使用メモリ | 40,476 KB |
最終ジャッジ日時 | 2024-09-26 02:12:16 |
合計ジャッジ時間 | 12,053 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
32,384 KB |
testcase_01 | AC | 48 ms
34,432 KB |
testcase_02 | AC | 48 ms
28,800 KB |
testcase_03 | AC | 50 ms
28,540 KB |
testcase_04 | AC | 48 ms
28,928 KB |
testcase_05 | AC | 48 ms
28,544 KB |
testcase_06 | AC | 48 ms
28,928 KB |
testcase_07 | AC | 59 ms
28,416 KB |
testcase_08 | AC | 48 ms
29,056 KB |
testcase_09 | AC | 49 ms
28,660 KB |
testcase_10 | AC | 48 ms
28,928 KB |
testcase_11 | AC | 48 ms
28,672 KB |
testcase_12 | AC | 48 ms
28,928 KB |
testcase_13 | AC | 48 ms
28,800 KB |
testcase_14 | AC | 48 ms
28,928 KB |
testcase_15 | AC | 62 ms
29,676 KB |
testcase_16 | AC | 132 ms
30,460 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (110 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; class Program { static void Main(string[] args) { var n = int.Parse(Console.ReadLine()); var p = new bool[n]; var r = new bool[n]; var input = Console.ReadLine(); if (input == "Yes") p[0] = true; else p[0] = false; for (int i = 1; i < n; i++) { input = Console.ReadLine(); if (input == "Yes") p[i] = true; else p[i] = false; } for(int i = n - 1; i >= 0; i--) { r[i] = p[i]; for(int j = i + 1; j < n; j++) { r[j] = r[j] == p[i]; } } for (int i = 0; i < n; i++) { Console.WriteLine(r[i] ? "Yes" : "No"); } } }