結果
問題 | No.123 カードシャッフル |
ユーザー | ki_ki33 |
提出日時 | 2015-01-11 23:38:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,278 bytes |
コンパイル時間 | 2,320 ms |
コンパイル使用メモリ | 78,648 KB |
実行使用メモリ | 59,568 KB |
最終ジャッジ日時 | 2024-06-13 04:13:19 |
合計ジャッジ時間 | 6,803 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
53,964 KB |
testcase_01 | AC | 141 ms
53,908 KB |
testcase_02 | AC | 135 ms
54,040 KB |
testcase_03 | AC | 135 ms
54,112 KB |
testcase_04 | AC | 139 ms
54,060 KB |
testcase_05 | AC | 136 ms
54,240 KB |
testcase_06 | WA | - |
testcase_07 | AC | 133 ms
54,200 KB |
testcase_08 | AC | 139 ms
54,128 KB |
testcase_09 | AC | 137 ms
53,844 KB |
testcase_10 | AC | 560 ms
59,388 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
import java.io.BufferedInputStream; import java.io.IOException; import java.math.BigDecimal; import java.math.BigInteger; import java.util.*; import java.util.Map.Entry; public class Main { public static final int C = 1000000007; //static boolean MAP[][]; static int N; static int M; static int MAX = -1; //static int tic[][]; static boolean NUM[]; //static int max; static int A[]; static int ST[][]; //static int p[]; //static ArrayList<HashSet<Integer>> al; static TreeMap<Integer, ArrayList<Integer>> hm; //static ArrayList<Integer> al; //static int a[][]; //static char[][] ch; //static ArrayList<HashMap<Long, Long>> al; //static String a[]; //static String str; //static int[] mach = new int[] {6, 2, 5, 5, 4, 5, 6, 3, 7, 6}; public static void main(String[] args) { StringBuilder sb = new StringBuilder(); BufferedInputStream bs = new BufferedInputStream(System.in); Scanner sc = new Scanner(bs); N = sc.nextInt(); M = sc.nextInt(); int a[] = new int[M]; for (int i=0; i < M; i++) { a[i] = sc.nextInt(); } int ans = 1; for (int i=M-1; i >= 0; i--) { if (ans == 1) { ans = a[i]; }else if (ans < a[i]) { ans--; }else { } } System.out.println(ans); } }