結果

問題 No.1837 Same but Different
ユーザー ks2mks2m
提出日時 2022-02-11 22:22:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,023 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 79,320 KB
実行使用メモリ 42,144 KB
最終ジャッジ日時 2024-06-27 19:43:13
合計ジャッジ時間 9,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,552 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 125 ms
41,472 KB
testcase_04 WA -
testcase_05 AC 152 ms
41,292 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 156 ms
41,540 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 153 ms
42,144 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 153 ms
41,856 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 123 ms
40,464 KB
testcase_20 WA -
testcase_21 AC 131 ms
41,480 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
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();
		sc.close();

		List<Integer> a = new ArrayList<>();
		int x = 9;
		int ta = 0;
		for (int i = 0; i < n; i++) {
			a.add(x);
			ta += x;
			x += 3;
		}

		List<Integer> b = new ArrayList<>();
		int y = 7;
		int tb = 0;
		for (int i = 0; i < n + 1; i++) {
			b.add(y);
			tb += y;
			y += 3;
		}
		int e = (3 - n % 3) % 3;
		for (int i = 0; i < e; i++) {
			b.set(b.size() - 1 - i, b.get(b.size() - 1 - i) + 1);
			tb++;
		}

		StringBuilder sb = new StringBuilder();
		for (int i : a) {
			sb.append(i).append(' ');
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());

		int rem = tb - ta;
		sb = new StringBuilder();
		for (int i : b) {
			if (i != rem) {
				sb.append(i).append(' ');
			}
		}
		sb.deleteCharAt(sb.length() - 1);
		System.out.println(sb.toString());
		
	}
}
0