結果
問題 | No.123 カードシャッフル |
ユーザー | aitdccd |
提出日時 | 2018-02-03 01:23:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 426 bytes |
コンパイル時間 | 1,772 ms |
コンパイル使用メモリ | 171,184 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 01:40:45 |
合計ジャッジ時間 | 3,449 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for(int i = 0; i < n; i++) #define ALL(a) (a).begin(),(a).end() int main() { int n, m; cin >> n >> m; vector<int> card(n); REP(i, n) card[i] = i; REP(i, m) { int t; cin >> t; card.insert(card.begin(), card[t + 1]); card.erase(card.begin() + (t + 1) + 1); } cout << card[0] << endl; return 0; }