結果

問題 No.57 ミリオンダイス
ユーザー lemonlemon
提出日時 2021-05-05 01:58:53
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 19 ms / 5,000 ms
コード長 233 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 10,692 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2023-10-01 04:06:32
合計ジャッジ時間 1,146 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,412 KB
testcase_01 AC 19 ms
8,436 KB
testcase_02 AC 19 ms
8,496 KB
testcase_03 AC 18 ms
8,408 KB
testcase_04 AC 17 ms
8,512 KB
testcase_05 AC 18 ms
8,512 KB
testcase_06 AC 19 ms
8,408 KB
testcase_07 AC 17 ms
8,556 KB
testcase_08 AC 18 ms
8,544 KB
testcase_09 AC 18 ms
8,440 KB
testcase_10 AC 18 ms
8,540 KB
testcase_11 AC 17 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, collections
 
sys.setrecursionlimit(10 ** 6)
stdin = sys.stdin

ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
ns = lambda: stdin.readline().strip()
mod = 10 * 7 + 7

n = ni()

print(n * 3.5)
0