結果
問題 | No.429 CupShuffle |
ユーザー | むらため |
提出日時 | 2019-01-21 10:58:38 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 739 bytes |
コンパイル時間 | 2,861 ms |
コンパイル使用メモリ | 66,664 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 10:28:37 |
合計ジャッジ時間 | 3,609 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 9 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 9 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
ソースコード
import sequtils,strutils template times*(n:int,body) = (for _ in 0..<n: body) proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .} proc scan(): int = while true: var k = getchar_unlocked() if k < '0': break result = 10 * result + k.ord - '0'.ord let n = scan() let k = scan() let x = scan() var C = toSeq(1..n) var XC : seq[int] for ik in 1..k: if ik == x : XC = C 4.times : discard getchar_unlocked() continue let a = scan() - 1 let b = scan() - 1 swap(C[a],C[b]) let diff = C.filterIt(it != scan()) var answers = newSeq[int]() for i,xc in XC: if xc != diff[0] and xc != diff[1] : continue answers &= i + 1 if answers.len == 2: break echo answers.mapIt($it).join(" ")