結果

問題 No.2610 Decreasing LCMs
ユーザー ks2mks2m
提出日時 2024-01-19 22:09:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 789 bytes
コンパイル時間 2,845 ms
コンパイル使用メモリ 75,340 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-09-28 04:32:46
合計ジャッジ時間 6,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,024 KB
testcase_01 AC 118 ms
41,096 KB
testcase_02 AC 114 ms
40,988 KB
testcase_03 AC 118 ms
41,068 KB
testcase_04 AC 123 ms
41,260 KB
testcase_05 AC 120 ms
41,260 KB
testcase_06 AC 122 ms
41,216 KB
testcase_07 AC 124 ms
41,380 KB
testcase_08 AC 108 ms
39,888 KB
testcase_09 AC 119 ms
41,068 KB
testcase_10 AC 121 ms
40,972 KB
testcase_11 AC 124 ms
41,244 KB
testcase_12 AC 110 ms
40,060 KB
testcase_13 AC 122 ms
41,296 KB
testcase_14 AC 123 ms
41,304 KB
testcase_15 AC 121 ms
41,144 KB
testcase_16 AC 125 ms
41,308 KB
testcase_17 AC 122 ms
41,020 KB
testcase_18 AC 123 ms
41,296 KB
testcase_19 AC 121 ms
41,044 KB
testcase_20 AC 124 ms
41,428 KB
testcase_21 AC 123 ms
41,420 KB
testcase_22 AC 119 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
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();

		int[] a = new int[n + 1];
		a[0] = 1 << (n - 1);
		for (int i = 1; i <= n; i++) {
			a[i] = a[0] + (1 << (i - 1));
		}

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

//		for (int i = 1; i < n; i++) {
//			System.out.println(lcm(a[i], a[i + 1]));
//		}
	}

	static long lcm(long a, long b) {
		BigInteger ba = BigInteger.valueOf(a);
		BigInteger bb = BigInteger.valueOf(b);
		return ba.multiply(bb).divide(ba.gcd(bb)).longValue();
	}
}
0