結果

問題 No.1822 Keima of Shogi
ユーザー Ain48803949Ain48803949
提出日時 2022-01-28 22:02:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-09 15:07:43
合計ジャッジ時間 916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,776 KB
testcase_01 AC 34 ms
11,648 KB
testcase_02 AC 34 ms
11,648 KB
testcase_03 AC 37 ms
11,648 KB
testcase_04 AC 38 ms
11,776 KB
testcase_05 AC 33 ms
11,776 KB
testcase_06 AC 31 ms
11,648 KB
testcase_07 AC 31 ms
11,648 KB
testcase_08 AC 37 ms
11,648 KB
testcase_09 AC 32 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time,random
input = lambda: sys.stdin.readline().rstrip()
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return list(map(int,input().split()))
def LIIS(): return list(map(int,input().split()))
def comb(n, r):return math.factorial(n) // (math.factorial(n - r) * math.factorial(r))
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
ragen=range
INF=10**18
MOD=998244353
#sys.setrecursionlimit(10**7)
alpha="abcdefghijklmnopqrstuvwxyz"
def bit(x):
    return bin(x).count("1")
##############################################################################
n=II()
n=-(-n//2)
print(n*(n+1)//2)
0