結果
問題 | No.26 シャッフルゲーム |
ユーザー | fujita |
提出日時 | 2023-04-28 13:50:12 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 899 bytes |
コンパイル時間 | 16,560 ms |
コンパイル使用メモリ | 168,700 KB |
実行使用メモリ | 186,596 KB |
最終ジャッジ日時 | 2024-11-17 14:15:10 |
合計ジャッジ時間 | 9,712 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
31,360 KB |
testcase_01 | AC | 70 ms
31,356 KB |
testcase_02 | AC | 69 ms
31,516 KB |
testcase_03 | AC | 70 ms
31,488 KB |
testcase_04 | WA | - |
testcase_05 | AC | 70 ms
31,380 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 70 ms
186,596 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (105 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.Collections.Generic; using System; using System.Linq; using System.Drawing; namespace yukicoder { class Program { static void Main(string[] args) { var N = int.Parse(Console.ReadLine()); var M = int.Parse(Console.ReadLine()); int M1, M2; string[] strings = new string[] {"1" , "2" , "3"}; for (int i = 0; i < M; i++) { var O = Console.ReadLine().Split(" "); M1 = int.Parse(O[0]); M2 = int.Parse(O[1]); var temp = strings[M1 - 1]; strings[M1 - 1] = strings[M2 - 1]; strings[M2 - 1] = temp; } string str = N.ToString(); int ans = str.IndexOf(str); Console.WriteLine(strings[ans]); } } }