結果
問題 | No.57 ミリオンダイス |
ユーザー | toto6114 |
提出日時 | 2019-08-01 20:27:35 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 170 bytes |
コンパイル時間 | 654 ms |
コンパイル使用メモリ | 70,912 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 07:54:26 |
合計ジャッジ時間 | 1,187 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 |
ソースコード
#include<iostream> #include<algorithm> #include<iomanip> using namespace std; int main() { double n; cin >> n; cout << fixed << setprecision(10) << n*3.5 << endl; }