結果
問題 | No.1292 パタパタ三角形 |
ユーザー | kakel-san |
提出日時 | 2024-12-10 23:46:33 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 73 ms / 2,000 ms |
コード長 | 1,658 bytes |
コンパイル時間 | 9,356 ms |
コンパイル使用メモリ | 165,892 KB |
実行使用メモリ | 184,580 KB |
最終ジャッジ日時 | 2024-12-10 23:46:45 |
合計ジャッジ時間 | 11,527 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
27,520 KB |
testcase_01 | AC | 46 ms
27,776 KB |
testcase_02 | AC | 47 ms
27,520 KB |
testcase_03 | AC | 51 ms
27,640 KB |
testcase_04 | AC | 48 ms
27,520 KB |
testcase_05 | AC | 48 ms
27,520 KB |
testcase_06 | AC | 46 ms
27,648 KB |
testcase_07 | AC | 59 ms
32,128 KB |
testcase_08 | AC | 61 ms
32,128 KB |
testcase_09 | AC | 71 ms
42,384 KB |
testcase_10 | AC | 71 ms
42,252 KB |
testcase_11 | AC | 68 ms
42,128 KB |
testcase_12 | AC | 70 ms
42,228 KB |
testcase_13 | AC | 73 ms
42,108 KB |
testcase_14 | AC | 58 ms
29,440 KB |
testcase_15 | AC | 58 ms
29,952 KB |
testcase_16 | AC | 58 ms
184,580 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (89 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; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var s = ReadLine(); var l = new char[] { 'a', ' ', 'b', 'c' }; var x = 1000000; var y = 1000000; var set = new HashSet<long>{ Key(x, y) }; var mx = new int[] { -1, 0, 0, 1 }; var my = new int[] { 0, -1, 1, 0 }; foreach (var si in s) { var pos = Pos(l, si); x += mx[pos]; y += my[pos]; set.Add(Key(x, y)); if (l[1] == ' ') { if (pos == 0) (l[0], l[1], l[2], l[3]) = (l[2], l[3], l[1], l[0]); else if (pos == 2) (l[0], l[1], l[2], l[3]) = (l[0], l[2], l[1], l[3]); else (l[0], l[1], l[2], l[3]) = (l[3], l[0], l[1], l[2]); } else { if (pos == 0) (l[0], l[1], l[2], l[3]) = (l[1], l[2], l[3], l[0]); else if (pos == 1) (l[0], l[1], l[2], l[3]) = (l[0], l[2], l[1], l[3]); else (l[0], l[1], l[2], l[3]) = (l[3], l[2], l[0], l[1]); } } WriteLine(set.Count); } static int Pos(char[] a, char c) { for (var i = 0; i < a.Length; ++i) if (a[i] == c) return i; return -1; } static long Key(int x, int y) { return x * 10_000_000L + y; } }