結果

問題 No.57 ミリオンダイス
ユーザー siguma323
提出日時 2016-05-08 19:24:55
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-10-05 10:50:30
合計ジャッジ時間 1,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <string>
#include <algorithm>
#include <numeric>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <utility>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <iterator>
#include <cmath>
#include <iomanip>
using namespace std;

using ull = unsigned long long;
using ll = long long;

int main()
{
    ull n;
    cin >> n;

    cout << static_cast<ull>(n*3.5) << endl;
}
0