結果

問題 No.57 ミリオンダイス
ユーザー おきょん.
提出日時 2022-01-11 16:26:17
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 195 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 84,040 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 11:39:55
合計ジャッジ時間 1,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.57 ミリオンダイス
#include <iostream>
#include <iomanip>
using namespace std;

signed main(){
    int n; cin >> n;
    cout << fixed << setprecision(16);
    cout << 3.5*n << endl;
}
0