結果
問題 | No.123 カードシャッフル |
ユーザー | rf141 |
提出日時 | 2015-08-09 21:28:38 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 612 bytes |
コンパイル時間 | 2,877 ms |
コンパイル使用メモリ | 75,056 KB |
実行使用メモリ | 54,384 KB |
最終ジャッジ日時 | 2024-07-18 06:17:46 |
合計ジャッジ時間 | 5,308 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 100 ms
40,880 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 374 ms
47,860 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
import java.util.*; public class card{ public static void main(String... args){ Scanner scan = new Scanner(System.in); int n = scan.nextInt(); int m = scan.nextInt(); int[] number = new int[n]; for(int i = 0; i < n; i++){ number[i] = i+1; } System.out.println(cardShuffle(number,m,scan)); } public static int cardShuffle(int[] number,int m,Scanner scan){ for(int i = 0; i < m; i++){ int shuffle_number = scan.nextInt(); int now = number[shuffle_number-1]; for(int j = shuffle_number-1; 0 < j; j++){ number[j] = number[j-1]; } number[0] = now; } return number[0]; } }