結果

問題 No.1351 Sum of GCD Equals LCM
ユーザー tentententen
提出日時 2024-07-23 08:55:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,268 bytes
コンパイル時間 2,819 ms
コンパイル使用メモリ 86,448 KB
実行使用メモリ 51,220 KB
最終ジャッジ日時 2024-07-23 08:55:13
合計ジャッジ時間 8,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
50,908 KB
testcase_01 AC 68 ms
51,016 KB
testcase_02 AC 68 ms
50,896 KB
testcase_03 AC 67 ms
50,968 KB
testcase_04 AC 67 ms
51,184 KB
testcase_05 AC 68 ms
50,884 KB
testcase_06 AC 72 ms
50,800 KB
testcase_07 AC 67 ms
50,944 KB
testcase_08 AC 65 ms
50,700 KB
testcase_09 AC 66 ms
50,988 KB
testcase_10 AC 72 ms
50,660 KB
testcase_11 AC 66 ms
50,912 KB
testcase_12 AC 68 ms
51,048 KB
testcase_13 AC 68 ms
51,092 KB
testcase_14 AC 68 ms
51,124 KB
testcase_15 AC 70 ms
50,928 KB
testcase_16 AC 66 ms
50,992 KB
testcase_17 AC 66 ms
51,052 KB
testcase_18 AC 65 ms
50,656 KB
testcase_19 AC 73 ms
51,068 KB
testcase_20 AC 69 ms
51,180 KB
testcase_21 AC 66 ms
51,056 KB
testcase_22 AC 72 ms
51,028 KB
testcase_23 AC 67 ms
51,016 KB
testcase_24 AC 72 ms
50,904 KB
testcase_25 AC 68 ms
51,184 KB
testcase_26 AC 66 ms
51,068 KB
testcase_27 AC 66 ms
50,988 KB
testcase_28 AC 66 ms
51,128 KB
testcase_29 AC 67 ms
51,088 KB
testcase_30 AC 68 ms
51,132 KB
testcase_31 AC 69 ms
50,900 KB
testcase_32 AC 67 ms
50,916 KB
testcase_33 AC 67 ms
51,032 KB
testcase_34 AC 68 ms
51,128 KB
testcase_35 AC 67 ms
51,112 KB
testcase_36 AC 69 ms
51,064 KB
testcase_37 AC 68 ms
50,772 KB
testcase_38 AC 67 ms
51,112 KB
testcase_39 AC 67 ms
51,220 KB
testcase_40 AC 66 ms
50,924 KB
testcase_41 AC 66 ms
51,032 KB
testcase_42 AC 70 ms
50,808 KB
testcase_43 AC 69 ms
51,156 KB
testcase_44 AC 66 ms
50,968 KB
testcase_45 AC 68 ms
50,936 KB
testcase_46 AC 71 ms
51,040 KB
testcase_47 AC 67 ms
51,076 KB
testcase_48 AC 67 ms
51,036 KB
testcase_49 AC 68 ms
50,700 KB
testcase_50 AC 67 ms
51,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static long[] facts;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        System.out.println(IntStream.range(0, n)
            .mapToObj(i -> String.valueOf(1L << i)).collect(Collectors.joining(" ")));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0