結果

問題 No.57 ミリオンダイス
ユーザー 8080
提出日時 2020-03-13 23:31:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 401 ms / 5,000 ms
コード長 87 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 209,524 KB
最終ジャッジ日時 2024-05-02 11:04:30
合計ジャッジ時間 3,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
99,572 KB
testcase_01 AC 52 ms
13,952 KB
testcase_02 AC 53 ms
13,952 KB
testcase_03 AC 378 ms
199,808 KB
testcase_04 AC 336 ms
174,964 KB
testcase_05 AC 262 ms
132,864 KB
testcase_06 AC 52 ms
13,824 KB
testcase_07 AC 54 ms
14,080 KB
testcase_08 AC 55 ms
14,720 KB
testcase_09 AC 86 ms
31,240 KB
testcase_10 AC 95 ms
37,360 KB
testcase_11 AC 401 ms
209,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import statistics
N = int(input())

lst = range(N,N*6+1)
print(statistics.median(lst))
0