結果

問題 No.1822 Keima of Shogi
ユーザー kept1994kept1994
提出日時 2022-03-19 14:27:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 53,788 KB
最終ジャッジ日時 2024-10-04 14:07:37
合計ジャッジ時間 1,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,272 KB
testcase_01 AC 33 ms
52,180 KB
testcase_02 AC 33 ms
51,752 KB
testcase_03 AC 35 ms
53,004 KB
testcase_04 AC 33 ms
52,308 KB
testcase_05 AC 32 ms
52,708 KB
testcase_06 AC 36 ms
52,756 KB
testcase_07 AC 33 ms
53,104 KB
testcase_08 AC 37 ms
52,440 KB
testcase_09 AC 33 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

def main():
    N = int(input())
    p = N // 2 + 1
    print((1 + p) * p // 2)
    return

if __name__ == '__main__':
    main()
0