結果
問題 | No.123 カードシャッフル |
ユーザー | tkzw_21 |
提出日時 | 2015-01-11 23:33:10 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 20 ms / 5,000 ms |
コード長 | 448 bytes |
コンパイル時間 | 1,239 ms |
コンパイル使用メモリ | 159,836 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-13 04:11:35 |
合計ジャッジ時間 | 1,965 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> #define INF INT_MAX / 2 #define MOD 1000000007 using namespace std; typedef pair<int,int> PII; typedef pair<int,pair<int,int>> PIPII; typedef long long ll; int main(void) { int n,m; cin >> n >> m; vector<int> a(n); for(int i=0;i<n;i++){ a[i] = i+1; } for(int i=0;i<m;i++){ int num;cin >> num; int tmp = a[num-1]; for(int i=num-2;i>=0;i--){ a[i+1] = a[i]; } a[0] = tmp; } cout << a[0] << endl; }