結果

問題 No.123 カードシャッフル
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-13 18:48:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 626 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 59,368 KB
最終ジャッジ日時 2024-11-30 04:40:35
合計ジャッジ時間 6,622 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,192 KB
testcase_01 AC 127 ms
53,868 KB
testcase_02 AC 128 ms
53,996 KB
testcase_03 AC 130 ms
53,892 KB
testcase_04 AC 127 ms
53,832 KB
testcase_05 AC 115 ms
52,996 KB
testcase_06 AC 129 ms
54,156 KB
testcase_07 AC 143 ms
53,864 KB
testcase_08 AC 138 ms
53,976 KB
testcase_09 AC 139 ms
53,752 KB
testcase_10 AC 573 ms
59,184 KB
testcase_11 AC 586 ms
59,368 KB
testcase_12 AC 626 ms
59,084 KB
testcase_13 AC 601 ms
59,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for (int i=1; i<=n; i++) {
			if (i < 10) {sb.append("0");}
			sb.append(i);
		}
		
		int m = sc.nextInt();
		for (int i=0; i<m; i++) {
			int end = sc.nextInt()*2;
			int start = end - 2;
			sb.insert(0,sb.substring(start,end));
			sb.delete(start+2,end+2);
		}
		
		int ans = Integer.parseInt(sb.substring(0,2));
		
		System.out.println(ans);
	}
}
0