結果

問題 No.1351 Sum of GCD Equals LCM
ユーザー tentententen
提出日時 2023-11-21 11:47:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 1,673 bytes
コンパイル時間 4,267 ms
コンパイル使用メモリ 85,560 KB
実行使用メモリ 51,252 KB
最終ジャッジ日時 2024-09-26 07:08:36
合計ジャッジ時間 10,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
50,916 KB
testcase_01 AC 73 ms
50,920 KB
testcase_02 AC 71 ms
50,816 KB
testcase_03 AC 71 ms
51,108 KB
testcase_04 AC 72 ms
50,716 KB
testcase_05 AC 82 ms
50,892 KB
testcase_06 AC 84 ms
50,672 KB
testcase_07 AC 80 ms
51,036 KB
testcase_08 AC 78 ms
50,796 KB
testcase_09 AC 83 ms
50,684 KB
testcase_10 AC 82 ms
51,032 KB
testcase_11 AC 84 ms
50,964 KB
testcase_12 AC 86 ms
51,012 KB
testcase_13 AC 80 ms
50,788 KB
testcase_14 AC 84 ms
50,720 KB
testcase_15 AC 81 ms
51,044 KB
testcase_16 AC 80 ms
50,592 KB
testcase_17 AC 80 ms
51,252 KB
testcase_18 AC 82 ms
51,184 KB
testcase_19 AC 83 ms
50,640 KB
testcase_20 AC 82 ms
51,044 KB
testcase_21 AC 83 ms
50,872 KB
testcase_22 AC 82 ms
50,880 KB
testcase_23 AC 71 ms
50,840 KB
testcase_24 AC 71 ms
50,748 KB
testcase_25 AC 71 ms
50,764 KB
testcase_26 AC 72 ms
50,884 KB
testcase_27 AC 67 ms
37,596 KB
testcase_28 AC 77 ms
38,012 KB
testcase_29 AC 67 ms
37,548 KB
testcase_30 AC 69 ms
37,920 KB
testcase_31 AC 66 ms
37,740 KB
testcase_32 AC 77 ms
37,308 KB
testcase_33 AC 82 ms
38,228 KB
testcase_34 AC 80 ms
37,964 KB
testcase_35 AC 78 ms
38,216 KB
testcase_36 AC 75 ms
37,760 KB
testcase_37 AC 78 ms
37,944 KB
testcase_38 AC 77 ms
37,832 KB
testcase_39 AC 78 ms
37,700 KB
testcase_40 AC 79 ms
37,812 KB
testcase_41 AC 77 ms
37,812 KB
testcase_42 AC 80 ms
37,740 KB
testcase_43 AC 79 ms
37,572 KB
testcase_44 AC 78 ms
37,580 KB
testcase_45 AC 78 ms
38,016 KB
testcase_46 AC 78 ms
37,964 KB
testcase_47 AC 76 ms
37,872 KB
testcase_48 AC 77 ms
38,224 KB
testcase_49 AC 79 ms
37,584 KB
testcase_50 AC 80 ms
37,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long[] ans = new long[n];
        for (int i = 0; i < n; i++) {
            ans[i] = (1L << i);
        }
        System.out.println(String.join(" ", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new)));
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0