結果

問題 No.1794 Continued Fraction
ユーザー tentententen
提出日時 2021-12-24 09:13:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 2,796 ms
コンパイル使用メモリ 78,596 KB
実行使用メモリ 50,544 KB
最終ジャッジ日時 2024-09-19 06:10:41
合計ジャッジ時間 5,429 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,020 KB
testcase_01 AC 50 ms
50,544 KB
testcase_02 AC 47 ms
37,020 KB
testcase_03 AC 47 ms
37,256 KB
testcase_04 AC 46 ms
37,220 KB
testcase_05 AC 48 ms
37,072 KB
testcase_06 AC 50 ms
36,864 KB
testcase_07 AC 49 ms
37,064 KB
testcase_08 AC 47 ms
36,812 KB
testcase_09 AC 46 ms
36,844 KB
testcase_10 AC 46 ms
37,132 KB
testcase_11 AC 46 ms
36,892 KB
testcase_12 AC 46 ms
37,036 KB
testcase_13 AC 48 ms
37,064 KB
testcase_14 AC 48 ms
36,932 KB
testcase_15 AC 46 ms
36,984 KB
testcase_16 AC 46 ms
36,828 KB
testcase_17 AC 46 ms
36,956 KB
testcase_18 AC 48 ms
36,936 KB
testcase_19 AC 47 ms
36,964 KB
testcase_20 AC 47 ms
37,004 KB
testcase_21 AC 48 ms
36,872 KB
testcase_22 AC 48 ms
36,968 KB
testcase_23 AC 51 ms
37,064 KB
testcase_24 AC 47 ms
37,008 KB
testcase_25 AC 47 ms
36,876 KB
testcase_26 AC 49 ms
36,956 KB
testcase_27 AC 48 ms
36,928 KB
testcase_28 AC 46 ms
36,984 KB
testcase_29 AC 46 ms
36,864 KB
testcase_30 AC 49 ms
36,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 mod = n % m;
            n = m;
            m = mod;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < ans.size(); i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(ans.get(i));
        }
        System.out.println(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0