結果

問題 No.1794 Continued Fraction
ユーザー tentententen
提出日時 2023-08-08 09:10:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,785 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 85,192 KB
実行使用メモリ 37,980 KB
最終ジャッジ日時 2024-11-08 14:52:56
合計ジャッジ時間 6,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,824 KB
testcase_01 AC 59 ms
37,800 KB
testcase_02 AC 64 ms
37,920 KB
testcase_03 AC 63 ms
37,980 KB
testcase_04 AC 63 ms
37,792 KB
testcase_05 AC 58 ms
37,728 KB
testcase_06 AC 57 ms
37,476 KB
testcase_07 AC 59 ms
37,836 KB
testcase_08 AC 60 ms
37,732 KB
testcase_09 AC 59 ms
37,364 KB
testcase_10 AC 58 ms
37,444 KB
testcase_11 AC 58 ms
37,812 KB
testcase_12 AC 64 ms
37,732 KB
testcase_13 AC 58 ms
37,664 KB
testcase_14 AC 58 ms
37,608 KB
testcase_15 AC 57 ms
37,232 KB
testcase_16 AC 56 ms
37,404 KB
testcase_17 AC 57 ms
37,664 KB
testcase_18 AC 56 ms
37,404 KB
testcase_19 AC 57 ms
37,752 KB
testcase_20 AC 57 ms
37,628 KB
testcase_21 AC 63 ms
37,780 KB
testcase_22 AC 63 ms
37,708 KB
testcase_23 AC 65 ms
37,856 KB
testcase_24 AC 59 ms
37,840 KB
testcase_25 AC 55 ms
37,536 KB
testcase_26 AC 55 ms
37,508 KB
testcase_27 AC 58 ms
37,840 KB
testcase_28 AC 56 ms
37,644 KB
testcase_29 AC 57 ms
37,800 KB
testcase_30 AC 59 ms
37,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int ans = 0;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int a = sc.nextInt();
        int b = sc.nextInt();
        ArrayList<Integer> ans = new ArrayList<>();
        while (b > 0) {
            ans.add(a / b);
            int mod = a % b;
            a = b;
            b = mod;
        }
        System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
    }
    
} 
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