結果
問題 | No.123 カードシャッフル |
ユーザー | めうめう🎒 |
提出日時 | 2016-01-19 22:14:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 20 ms / 5,000 ms |
コード長 | 532 bytes |
コンパイル時間 | 527 ms |
コンパイル使用メモリ | 73,284 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 14:27:16 |
合計ジャッジ時間 | 1,431 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 14 ms
5,376 KB |
testcase_11 | AC | 20 ms
5,376 KB |
testcase_12 | AC | 20 ms
5,376 KB |
testcase_13 | AC | 20 ms
5,376 KB |
ソースコード
#include <iostream> #include <sstream> #include <math.h> #include <stack> #include <set> #include <algorithm> #include <string> #include <queue> #include <stack> #include <map> #include <cstdio> #include <vector> using namespace std; #define INF (1 << 30) #define INFLL (1LL << 60) int main() { int yama[51]; for(int i = 0;i < 51;i++){ yama[i] = i; } int n,m,num; cin >> n >> m; for(int i = 0;i < m;i++){ cin >> num; for(int j = num;j > 1;j--){ swap(yama[j],yama[j-1]); } } cout << yama[1] << endl; return 0; }