結果

問題 No.1076 寿司打
ユーザー tentententen
提出日時 2024-07-10 18:06:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,365 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 78,864 KB
実行使用メモリ 51,400 KB
最終ジャッジ日時 2024-07-10 18:06:36
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
51,340 KB
testcase_01 AC 105 ms
51,396 KB
testcase_02 AC 65 ms
51,336 KB
testcase_03 AC 109 ms
51,300 KB
testcase_04 AC 109 ms
51,296 KB
testcase_05 AC 68 ms
51,172 KB
testcase_06 AC 67 ms
51,268 KB
testcase_07 AC 67 ms
51,320 KB
testcase_08 AC 66 ms
51,380 KB
testcase_09 AC 106 ms
51,400 KB
testcase_10 AC 63 ms
51,180 KB
testcase_11 AC 68 ms
51,392 KB
testcase_12 AC 106 ms
51,216 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();
        double rate = sc.nextDouble();
        double current = rate;
        double ans = 0;
        for (int i = 1; i < 1000000; i++) {
            ans += current;
            current *= rate;
        }
        System.out.println(new java.math.BigDecimal(ans).toPlainString());        
    }
}
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