結果

問題 No.1794 Continued Fraction
ユーザー tentententen
提出日時 2024-07-29 17:49:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,438 bytes
コンパイル時間 2,942 ms
コンパイル使用メモリ 91,304 KB
実行使用メモリ 51,216 KB
最終ジャッジ日時 2024-07-29 17:49:35
合計ジャッジ時間 6,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
51,104 KB
testcase_01 AC 68 ms
50,748 KB
testcase_02 AC 70 ms
51,216 KB
testcase_03 AC 68 ms
50,740 KB
testcase_04 AC 69 ms
51,120 KB
testcase_05 AC 70 ms
51,128 KB
testcase_06 AC 67 ms
51,024 KB
testcase_07 AC 68 ms
50,792 KB
testcase_08 AC 68 ms
51,164 KB
testcase_09 AC 69 ms
51,140 KB
testcase_10 AC 68 ms
51,140 KB
testcase_11 AC 70 ms
51,144 KB
testcase_12 AC 69 ms
51,056 KB
testcase_13 AC 67 ms
51,044 KB
testcase_14 AC 70 ms
51,152 KB
testcase_15 AC 71 ms
51,132 KB
testcase_16 AC 69 ms
51,092 KB
testcase_17 AC 67 ms
51,060 KB
testcase_18 AC 69 ms
51,112 KB
testcase_19 AC 68 ms
51,052 KB
testcase_20 AC 68 ms
50,728 KB
testcase_21 AC 70 ms
51,080 KB
testcase_22 AC 68 ms
50,928 KB
testcase_23 AC 68 ms
50,916 KB
testcase_24 AC 69 ms
50,876 KB
testcase_25 AC 68 ms
51,188 KB
testcase_26 AC 77 ms
51,184 KB
testcase_27 AC 68 ms
51,124 KB
testcase_28 AC 69 ms
50,724 KB
testcase_29 AC 67 ms
50,984 KB
testcase_30 AC 67 ms
51,092 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();
        int n = sc.nextInt();
        int m = sc.nextInt();
        List<Integer> ans = new ArrayList<>();
        while (m > 0) {
            ans.add(n / m);
            n %= m;
            int tmp = n;
            n = m;
            m = tmp;
        }
        
        System.out.println(ans.stream().map(x -> x.toString()).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