結果

問題 No.1033 乱数サイ
ユーザー yassu0320yassu0320
提出日時 2022-02-12 22:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 86,932 KB
実行使用メモリ 79,776 KB
最終ジャッジ日時 2023-09-11 11:06:09
合計ジャッジ時間 4,885 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
79,644 KB
testcase_01 AC 174 ms
79,636 KB
testcase_02 AC 174 ms
79,692 KB
testcase_03 AC 172 ms
79,744 KB
testcase_04 AC 171 ms
79,520 KB
testcase_05 AC 174 ms
79,776 KB
testcase_06 AC 171 ms
79,604 KB
testcase_07 AC 172 ms
79,732 KB
testcase_08 AC 178 ms
79,588 KB
testcase_09 AC 178 ms
79,692 KB
testcase_10 AC 170 ms
79,644 KB
testcase_11 AC 180 ms
79,592 KB
testcase_12 AC 175 ms
79,688 KB
testcase_13 AC 172 ms
79,704 KB
testcase_14 AC 171 ms
79,524 KB
testcase_15 AC 172 ms
79,704 KB
testcase_16 AC 174 ms
79,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

from pprint import pprint
from string import ascii_lowercase as letter
from sys import setrecursionlimit, stdin
from typing import Dict, Iterable, Set

INF: int = 1 << 62
MOD1000000007 = 10**9 + 7
MOD998244353 = 998244353
setrecursionlimit(500_000)
readline = stdin.readline
input = lambda: stdin.readline().rstrip('\r\n')


def inputs(type_=int):
    ins = input().split()

    if isinstance(type_, Iterable):
        return [t(x) for t, x in zip(type_, ins)]
    else:
        return list(map(type_, ins))


def input_(type_=int):
    a, = inputs(type_)
    return a


def input1() -> int:
    return int(readline())


inputi = input1


def input2():
    a = readline().split()
    assert len(a) == 2
    a[0] = int(a[0])
    a[1] = int(a[1])
    return a


def input3():
    a = readline().split()
    assert len(a) == 3
    a[0] = int(a[0])
    a[1] = int(a[1])
    a[2] = int(a[2])
    return a


def input4():
    a = readline().split()
    assert len(a) == 4
    a[0] = int(a[0])
    a[1] = int(a[1])
    a[2] = int(a[2])
    a[3] = int(a[3])
    return a


# start coding

n, k = input2()
print(n / 2)
0