結果

問題 No.1794 Continued Fraction
ユーザー tentententen
提出日時 2023-04-19 09:01:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,760 bytes
コンパイル時間 2,754 ms
コンパイル使用メモリ 85,064 KB
実行使用メモリ 38,000 KB
最終ジャッジ日時 2024-10-14 08:44:16
合計ジャッジ時間 5,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
37,568 KB
testcase_01 AC 66 ms
37,400 KB
testcase_02 AC 61 ms
37,388 KB
testcase_03 AC 62 ms
37,448 KB
testcase_04 AC 63 ms
37,700 KB
testcase_05 AC 61 ms
37,572 KB
testcase_06 AC 61 ms
37,520 KB
testcase_07 AC 64 ms
38,000 KB
testcase_08 AC 59 ms
37,560 KB
testcase_09 AC 63 ms
37,828 KB
testcase_10 AC 61 ms
37,680 KB
testcase_11 AC 60 ms
37,760 KB
testcase_12 AC 60 ms
37,460 KB
testcase_13 AC 60 ms
37,064 KB
testcase_14 AC 60 ms
37,364 KB
testcase_15 AC 62 ms
37,964 KB
testcase_16 AC 62 ms
37,588 KB
testcase_17 AC 59 ms
37,400 KB
testcase_18 AC 69 ms
37,304 KB
testcase_19 AC 63 ms
37,400 KB
testcase_20 AC 61 ms
37,772 KB
testcase_21 AC 61 ms
37,508 KB
testcase_22 AC 62 ms
37,552 KB
testcase_23 AC 64 ms
37,840 KB
testcase_24 AC 58 ms
37,472 KB
testcase_25 AC 61 ms
37,340 KB
testcase_26 AC 60 ms
37,680 KB
testcase_27 AC 63 ms
37,592 KB
testcase_28 AC 60 ms
37,364 KB
testcase_29 AC 59 ms
37,616 KB
testcase_30 AC 70 ms
37,480 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();
        int m = sc.nextInt();
        ArrayList<Integer> ans = new ArrayList<>();
        while (m > 0) {
            ans.add(n / m);
            int tmp = n % m;
            n = m;
            m = tmp;
        }
        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