結果
問題 | No.123 カードシャッフル |
ユーザー | funakoshi |
提出日時 | 2019-08-23 16:54:22 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 10 ms / 5,000 ms |
コード長 | 489 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 14:30:23 |
合計ジャッジ時間 | 935 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 0 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,824 KB |
testcase_10 | AC | 9 ms
6,820 KB |
testcase_11 | AC | 8 ms
6,816 KB |
testcase_12 | AC | 10 ms
6,816 KB |
testcase_13 | AC | 9 ms
6,816 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> #include <math.h> int main(void) { int totalcard,shuffle,top=1; scanf("%d %d",&totalcard,&shuffle); int sf[shuffle]; for(int i=0;i<shuffle;i++) { scanf("%d",&sf[i]); } for(int i=shuffle-1;0<=i;i--) { if(top==1) { top=sf[i]; } else if (sf[i]>=top) { top--; } } printf("%d",top); }