結果

問題 No.1422 Social Distance in Train
ユーザー seiyu_kyoproseiyu_kyopro
提出日時 2021-10-09 17:51:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 139 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 117,304 KB
最終ジャッジ日時 2024-12-16 04:57:42
合計ジャッジ時間 20,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,526 ms
57,724 KB
testcase_02 AC 945 ms
57,352 KB
testcase_03 AC 913 ms
57,500 KB
testcase_04 AC 943 ms
57,536 KB
testcase_05 AC 929 ms
57,752 KB
testcase_06 AC 917 ms
57,376 KB
testcase_07 AC 913 ms
57,760 KB
testcase_08 AC 953 ms
57,376 KB
testcase_09 AC 969 ms
57,500 KB
testcase_10 AC 953 ms
57,624 KB
testcase_11 AC 1,027 ms
57,376 KB
testcase_12 AC 1,041 ms
57,504 KB
testcase_13 AC 1,013 ms
117,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import comb

n = int(input())

a = n - (n + 1) // 2 + 1
b = (n + 1) // 2

# print(a, b)

print(comb(a, b, exact = True))
0