結果
問題 | No.299 蟻本が読めない |
ユーザー | koukonko |
提出日時 | 2015-12-10 18:59:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 51 ms / 1,000 ms |
コード長 | 683 bytes |
コンパイル時間 | 1,967 ms |
コンパイル使用メモリ | 73,476 KB |
実行使用メモリ | 37,152 KB |
最終ジャッジ日時 | 2024-09-15 07:39:58 |
合計ジャッジ時間 | 2,622 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
37,152 KB |
testcase_01 | AC | 50 ms
37,048 KB |
testcase_02 | AC | 51 ms
37,148 KB |
testcase_03 | AC | 50 ms
37,112 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("316"); count = count.subtract(new BigInteger("1")); ans = ans.add(count.multiply(new BigInteger("52"))); System.out.println(ans.toString()); } catch (NumberFormatException e) { e.getStackTrace(); } catch (IOException e) { e.getStackTrace(); } catch (Exception e) { e.getStackTrace(); } } }