結果

問題 No.1650 Moving Coins
ユーザー ks2mks2m
提出日時 2021-08-20 22:15:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,383 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 87,688 KB
実行使用メモリ 78,168 KB
最終ジャッジ日時 2024-10-14 04:04:43
合計ジャッジ時間 26,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,616 KB
testcase_01 AC 127 ms
41,256 KB
testcase_02 AC 126 ms
40,188 KB
testcase_03 AC 306 ms
46,368 KB
testcase_04 AC 257 ms
44,448 KB
testcase_05 AC 292 ms
46,260 KB
testcase_06 AC 293 ms
46,148 KB
testcase_07 AC 296 ms
46,024 KB
testcase_08 AC 1,004 ms
63,868 KB
testcase_09 AC 943 ms
65,568 KB
testcase_10 AC 996 ms
64,188 KB
testcase_11 AC 1,019 ms
63,552 KB
testcase_12 AC 815 ms
61,488 KB
testcase_13 AC 827 ms
63,172 KB
testcase_14 AC 961 ms
63,776 KB
testcase_15 AC 779 ms
52,136 KB
testcase_16 AC 1,057 ms
65,800 KB
testcase_17 AC 1,042 ms
65,500 KB
testcase_18 AC 1,142 ms
67,912 KB
testcase_19 AC 1,276 ms
71,488 KB
testcase_20 AC 1,375 ms
74,756 KB
testcase_21 AC 1,340 ms
77,344 KB
testcase_22 AC 1,383 ms
71,008 KB
testcase_23 AC 1,286 ms
78,168 KB
testcase_24 AC 285 ms
46,788 KB
testcase_25 AC 286 ms
47,556 KB
testcase_26 AC 929 ms
59,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		int[] b = new int[n];
		for (int i = 0; i < n; i++) {
			b[i] = sc.nextInt();
		}
		sc.close();

		List<Integer> l = new ArrayList<>();
		List<Integer> r = new ArrayList<>();
		for (int i = 0; i < n; i++) {
			if (a[i] > b[i]) {
				l.add(i);
			}
			if (a[i] < b[i]) {
				r.add(i);
			}
		}
		Collections.reverse(r);

		List<String> list = new ArrayList<>();
		for (int i : l) {
			int d = a[i] - b[i];
			String s = (i + 1) + " L";
			for (int j = 0; j < d; j++) {
				list.add(s);
			}
		}
		for (int i : r) {
			int d = b[i] - a[i];
			String s = (i + 1) + " R";
			for (int j = 0; j < d; j++) {
				list.add(s);
			}
		}
		PrintWriter pw = new PrintWriter(System.out);
		pw.println(list.size());
		for (String s : list) {
			pw.println(s);
		}
		pw.flush();
	}
}
0