結果

問題 No.220 世界のなんとか2
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-31 11:16:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 2,919 ms
コンパイル使用メモリ 75,276 KB
実行使用メモリ 52,136 KB
最終ジャッジ日時 2024-07-06 12:54:40
合計ジャッジ時間 4,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,552 KB
testcase_01 AC 48 ms
49,672 KB
testcase_02 AC 49 ms
50,064 KB
testcase_03 AC 46 ms
50,112 KB
testcase_04 AC 45 ms
50,108 KB
testcase_05 AC 50 ms
49,668 KB
testcase_06 AC 49 ms
50,080 KB
testcase_07 AC 50 ms
49,772 KB
testcase_08 AC 47 ms
49,796 KB
testcase_09 AC 47 ms
50,004 KB
testcase_10 AC 46 ms
49,672 KB
testcase_11 AC 46 ms
49,672 KB
testcase_12 AC 46 ms
49,716 KB
testcase_13 AC 46 ms
49,924 KB
testcase_14 AC 46 ms
49,932 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No220_2 {
    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int N = Integer.parseInt(br.readLine());

            // 10^n-1-(2/3)×9^n
            long ans = (long) (Math.pow(10, N) - 1 - (2 / 3.0) * Math.pow(9, N));
            System.out.println(ans);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }
}
0