結果

問題 No.1464 Number Conversion
ユーザー tentententen
提出日時 2021-04-13 12:29:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,470 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 78,956 KB
実行使用メモリ 40,280 KB
最終ジャッジ日時 2024-06-29 13:23:54
合計ジャッジ時間 5,775 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
39,932 KB
testcase_01 AC 79 ms
38,696 KB
testcase_02 AC 80 ms
38,432 KB
testcase_03 AC 80 ms
39,732 KB
testcase_04 AC 77 ms
38,568 KB
testcase_05 AC 79 ms
39,616 KB
testcase_06 AC 78 ms
39,716 KB
testcase_07 AC 79 ms
38,340 KB
testcase_08 AC 79 ms
38,072 KB
testcase_09 AC 75 ms
38,500 KB
testcase_10 AC 87 ms
40,116 KB
testcase_11 AC 78 ms
38,352 KB
testcase_12 AC 78 ms
38,408 KB
testcase_13 AC 77 ms
38,336 KB
testcase_14 AC 73 ms
37,952 KB
testcase_15 AC 76 ms
38,452 KB
testcase_16 AC 76 ms
38,188 KB
testcase_17 AC 79 ms
38,128 KB
testcase_18 AC 77 ms
38,304 KB
testcase_19 AC 76 ms
40,032 KB
testcase_20 AC 77 ms
38,504 KB
testcase_21 AC 89 ms
38,564 KB
testcase_22 AC 77 ms
38,108 KB
testcase_23 AC 78 ms
40,116 KB
testcase_24 AC 76 ms
38,200 KB
testcase_25 AC 77 ms
38,268 KB
testcase_26 AC 78 ms
39,588 KB
testcase_27 AC 77 ms
40,280 KB
testcase_28 AC 75 ms
38,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        String s = sc.next();
        long x;
        long y = 1;
        if (s.contains(".")) {
            x = Long.parseLong(s.substring(0, s.indexOf(".")));
            int length = s.length() - s.indexOf(".") - 1;
            for (int i = 0; i < length; i++) {
                x *= 10;
                y *= 10;
            }
            x += Long.parseLong(s.substring(s.indexOf(".") + 1, s.length()));
        } else {
            x = Long.parseLong(s);
        }
        long gcd = getGCD(x, y);
        System.out.println((x / gcd) + "/" + (y / gcd));
    }
    
    static long getGCD(long x, long y) {
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
}
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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0