結果

問題 No.57 ミリオンダイス
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-01 20:50:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 87,040 KB
実行使用メモリ 73,232 KB
最終ジャッジ日時 2023-08-25 18:14:30
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
73,224 KB
testcase_01 AC 92 ms
72,960 KB
testcase_02 AC 94 ms
73,232 KB
testcase_03 AC 101 ms
72,976 KB
testcase_04 AC 98 ms
72,976 KB
testcase_05 AC 96 ms
72,868 KB
testcase_06 AC 98 ms
73,052 KB
testcase_07 AC 89 ms
72,832 KB
testcase_08 AC 91 ms
73,128 KB
testcase_09 AC 89 ms
73,056 KB
testcase_10 AC 97 ms
72,756 KB
testcase_11 AC 89 ms
72,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline
N = int(input())
print(3.5*N)
0