結果
問題 | No.111 あばばばば |
ユーザー | Lo_OT |
提出日時 | 2018-04-10 23:23:38 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 937 bytes |
コンパイル時間 | 1,986 ms |
コンパイル使用メモリ | 74,812 KB |
実行使用メモリ | 54,464 KB |
最終ジャッジ日時 | 2024-06-26 21:05:51 |
合計ジャッジ時間 | 4,097 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
54,116 KB |
testcase_01 | AC | 130 ms
54,152 KB |
testcase_02 | AC | 130 ms
54,140 KB |
testcase_03 | WA | - |
testcase_04 | AC | 127 ms
54,396 KB |
testcase_05 | AC | 127 ms
53,948 KB |
testcase_06 | AC | 129 ms
54,028 KB |
testcase_07 | AC | 119 ms
52,960 KB |
testcase_08 | WA | - |
testcase_09 | AC | 132 ms
54,160 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); Yukicoder solver = new Yukicoder(); solver.solve(1, in, out); out.close(); } static class Yukicoder { public void solve(int testNumber, Scanner in, PrintWriter out) { long L = in.nextLong(); if (L == 3) { out.println(1); } else { long n = (L - 1) / 2 - 1; out.println((long) (Math.pow(n, 2) + 2 * n + 1)); } } } }