結果

問題 No.111 あばばばば
ユーザー Lo_OTLo_OT
提出日時 2018-04-10 23:45:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 828 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 71,340 KB
実行使用メモリ 56,712 KB
最終ジャッジ日時 2023-09-09 03:58:53
合計ジャッジ時間 3,965 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,600 KB
testcase_01 AC 121 ms
56,032 KB
testcase_02 AC 122 ms
55,952 KB
testcase_03 AC 122 ms
56,712 KB
testcase_04 AC 121 ms
56,032 KB
testcase_05 AC 122 ms
55,972 KB
testcase_06 AC 123 ms
55,828 KB
testcase_07 AC 124 ms
55,860 KB
testcase_08 AC 121 ms
55,776 KB
testcase_09 AC 123 ms
56,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 n = in.nextLong();
            long num = ((n - 1) / 2) - 1;
            out.println(num * num + 2 * num + 1);
        }
    }
}
0