結果
問題 | No.123 カードシャッフル |
ユーザー |
|
提出日時 | 2020-06-16 02:24:11 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 14 ms / 5,000 ms |
コード長 | 386 bytes |
コンパイル時間 | 2,235 ms |
コンパイル使用メモリ | 193,148 KB |
最終ジャッジ日時 | 2025-01-11 04:36:13 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 10 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define REP(i,n) for(int i=0; i<(int)(n); i++)int main() {ios_base::sync_with_stdio(0);cin.tie(0);int n, m;cin >> n >> m;vector<int> c(n);REP (i, n) c[i] = i + 1;REP (i, m) {int a;cin >> a;--a;while (a) {swap(c[a], c[a-1]);--a;}}cout << c[0] << endl;return 0;}