結果
問題 | No.26 シャッフルゲーム |
ユーザー | bluemegane |
提出日時 | 2018-10-24 17:01:45 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 26 ms / 5,000 ms |
コード長 | 719 bytes |
コンパイル時間 | 836 ms |
コンパイル使用メモリ | 108,116 KB |
実行使用メモリ | 25,864 KB |
最終ジャッジ日時 | 2024-11-19 05:29:18 |
合計ジャッジ時間 | 1,687 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
21,680 KB |
testcase_01 | AC | 26 ms
25,812 KB |
testcase_02 | AC | 26 ms
24,032 KB |
testcase_03 | AC | 25 ms
24,028 KB |
testcase_04 | AC | 26 ms
25,864 KB |
testcase_05 | AC | 26 ms
24,032 KB |
testcase_06 | AC | 26 ms
24,112 KB |
testcase_07 | AC | 25 ms
23,732 KB |
testcase_08 | AC | 26 ms
23,640 KB |
testcase_09 | AC | 26 ms
23,700 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Hello { public static void Main() { var a = new int[3]; a[0] = 0; a[1] = 1; a[2] = 2; var t = int.Parse(Console.ReadLine().Trim()) - 1; var n = int.Parse(Console.ReadLine().Trim()); for (int i = 0; i < n; i++) { string[] line = Console.ReadLine().Trim().Split(' '); var p = int.Parse(line[0]) - 1; var q = int.Parse(line[1]) - 1; swap(a, p, q); } for (int i = 0; i < 3; i++) if (a[i] == t) { Console.WriteLine(i + 1); break; } } public static void swap(int[] a, int p, int q) { var w = a[p]; a[p] = a[q]; a[q] = w; } }