結果

問題 No.57 ミリオンダイス
ユーザー トミートミー
提出日時 2024-03-27 17:21:09
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 188 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 199,400 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 14:33:41
合計ジャッジ時間 2,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef int64_t lint;

int main()
{
    lint n;cin>>n;
    cout<<fixed<<setprecision(20);
    cout<<n*3.5<<endl;


    // system("pause");
}
 
0