結果
問題 | No.311 z in FizzBuzzString |
ユーザー | koukonko |
提出日時 | 2015-12-10 18:33:05 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 56 ms / 1,500 ms |
コード長 | 718 bytes |
コンパイル時間 | 2,097 ms |
コンパイル使用メモリ | 74,732 KB |
実行使用メモリ | 50,632 KB |
最終ジャッジ日時 | 2024-09-24 21:26:41 |
合計ジャッジ時間 | 3,312 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,504 KB |
testcase_01 | AC | 55 ms
50,272 KB |
testcase_02 | AC | 55 ms
50,544 KB |
testcase_03 | AC | 55 ms
50,416 KB |
testcase_04 | AC | 54 ms
50,284 KB |
testcase_05 | AC | 56 ms
50,268 KB |
testcase_06 | AC | 56 ms
50,240 KB |
testcase_07 | AC | 54 ms
50,596 KB |
testcase_08 | AC | 56 ms
50,468 KB |
testcase_09 | AC | 55 ms
50,256 KB |
testcase_10 | AC | 55 ms
50,632 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class Main { public static void main(String[] args) { BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); try { BigInteger count = new BigInteger(buff.readLine()); BigInteger ans = new BigInteger("0"); ans = ans.add(count.divide(new BigInteger("3"))); ans = ans.add(count.divide(new BigInteger("5"))); System.out.println(ans.multiply(new BigInteger("" + 2)).toString()); } catch (NumberFormatException e) { e.getStackTrace(); } catch (IOException e) { e.getStackTrace(); } catch (Exception e) { e.getStackTrace(); } } }