結果

問題 No.2479 Sum of Squares
ユーザー tentententen
提出日時 2024-07-02 14:05:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 1,743 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 84,024 KB
実行使用メモリ 38,060 KB
最終ジャッジ日時 2024-07-02 14:05:30
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
37,548 KB
testcase_01 AC 65 ms
37,720 KB
testcase_02 AC 66 ms
37,796 KB
testcase_03 AC 66 ms
37,724 KB
testcase_04 AC 67 ms
37,392 KB
testcase_05 AC 66 ms
37,532 KB
testcase_06 AC 66 ms
37,960 KB
testcase_07 AC 63 ms
37,132 KB
testcase_08 AC 64 ms
37,432 KB
testcase_09 AC 64 ms
37,484 KB
testcase_10 AC 66 ms
37,724 KB
testcase_11 AC 65 ms
37,468 KB
testcase_12 AC 67 ms
37,740 KB
testcase_13 AC 66 ms
37,988 KB
testcase_14 AC 64 ms
37,832 KB
testcase_15 AC 66 ms
37,972 KB
testcase_16 AC 65 ms
37,140 KB
testcase_17 AC 65 ms
37,804 KB
testcase_18 AC 66 ms
37,916 KB
testcase_19 AC 64 ms
37,932 KB
testcase_20 AC 66 ms
38,060 KB
testcase_21 AC 65 ms
37,820 KB
testcase_22 AC 66 ms
37,808 KB
testcase_23 AC 66 ms
37,688 KB
testcase_24 AC 65 ms
37,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        List<Long> ans = new ArrayList<>();
        while (n > 0) {
            long x = getSqrt(n);
            ans.add(x * x);
            n -= x * x;
        }
        System.out.println(ans.size());
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
    
    static long getSqrt(long x) {
        long left = 0;
        long right = Integer.MAX_VALUE;
        while (right - left > 1) {
            long m = (left + right) / 2;
            if (m * m <= x) {
                left = m;
            } else {
                right = m;
            }
        }
        return left;
    }
}
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