結果
問題 | No.2535 多重同値 |
ユーザー | volhalink |
提出日時 | 2023-11-10 23:15:46 |
言語 | C# (.NET 8.0.203) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,146 bytes |
コンパイル時間 | 7,129 ms |
コンパイル使用メモリ | 166,848 KB |
実行使用メモリ | 38,784 KB |
最終ジャッジ日時 | 2024-09-26 02:15:32 |
合計ジャッジ時間 | 11,806 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
32,384 KB |
testcase_01 | AC | 50 ms
34,304 KB |
testcase_02 | AC | 49 ms
28,672 KB |
testcase_03 | AC | 49 ms
28,672 KB |
testcase_04 | AC | 49 ms
28,544 KB |
testcase_05 | AC | 51 ms
29,056 KB |
testcase_06 | AC | 51 ms
28,800 KB |
testcase_07 | AC | 52 ms
29,056 KB |
testcase_08 | AC | 52 ms
28,640 KB |
testcase_09 | AC | 51 ms
28,416 KB |
testcase_10 | AC | 51 ms
28,416 KB |
testcase_11 | AC | 50 ms
28,660 KB |
testcase_12 | AC | 49 ms
28,544 KB |
testcase_13 | AC | 48 ms
28,928 KB |
testcase_14 | AC | 49 ms
28,800 KB |
testcase_15 | AC | 61 ms
29,824 KB |
testcase_16 | AC | 146 ms
30,080 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (88 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 tr = -1; var cont = true; var input = Console.ReadLine(); if (input == "Yes") { p[0] = true; tr = 0; } else { cont = false; p[0] = false; } for (int i = 1; i < n; i++) { input = Console.ReadLine(); if (input == "Yes") { p[i] = true; if (cont) tr = i; } else { cont = false; p[i] = false; } } for(int i = n - 1; i >= 0; i--) { r[i] = p[i]; if (i >= tr) { 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"); } } }