結果

問題 No.1033 乱数サイ
ユーザー hedwig100hedwig100
提出日時 2020-04-24 21:22:13
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 8,756 KB
最終ジャッジ日時 2023-08-05 04:24:06
合計ジャッジ時間 1,355 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,748 KB
testcase_01 AC 20 ms
8,756 KB
testcase_02 AC 20 ms
8,744 KB
testcase_03 AC 21 ms
8,708 KB
testcase_04 AC 18 ms
8,564 KB
testcase_05 AC 18 ms
8,528 KB
testcase_06 AC 18 ms
8,572 KB
testcase_07 AC 18 ms
8,728 KB
testcase_08 AC 18 ms
8,568 KB
testcase_09 AC 18 ms
8,576 KB
testcase_10 AC 18 ms
8,728 KB
testcase_11 AC 19 ms
8,552 KB
testcase_12 AC 19 ms
8,544 KB
testcase_13 AC 18 ms
8,532 KB
testcase_14 AC 19 ms
8,536 KB
testcase_15 AC 18 ms
8,528 KB
testcase_16 AC 18 ms
8,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  collections import deque
from math import factorial

def main():
    n,k = map(int,input().split())
    print(n/2)
if __name__=='__main__':
    main()
0