結果
問題 | No.57 ミリオンダイス |
ユーザー | zawakasu |
提出日時 | 2022-05-17 12:11:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,902 bytes |
コンパイル時間 | 1,690 ms |
コンパイル使用メモリ | 157,936 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 06:25:42 |
合計ジャッジ時間 | 1,994 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> // clang-format off using namespace std; #define all(a) a.begin(), a.end() #define int long long #define over_load_(_1, _2, _3, _4, NAME, ...) NAME #define rep(...) over_load_(__VA_ARGS__, rep4, rep3, rep2)(__VA_ARGS__) #define rep2(i, r) for (int i = 0; i < static_cast<int>(r); (i) += 1) #define rep3(i, l, r) for (int i = static_cast<int>(l); i < static_cast<int>(r); (i) += 1) #define rep4(i, l, r, stride) for (int i = static_cast<int>(l); i < static_cast<int>(r); (i) += (stride)) #define rrep(...) over_load_(__VA_ARGS__, rrep4, rrep3, rrep2)(__VA_ARGS__) #define rrep2(i, r) for (int i = static_cast<int>(r) - 1; i >= 0; (i) -= 1) #define rrep3(i, l, r) for (int i = static_cast<int>(r) - 1; i >= static_cast<int>(l); (i) -= 1) #define rrep4(i, l, r, stride) for (int i = static_cast<int>(r) - 1; i >= static_cast<int>(l); (i) -= (stride)) #define fore(i, a) for (auto &i : a) template <typename T1, typename T2> inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } template <typename T1, typename T2> inline bool chmin(T1 &a, T2 b) { return a > b and (a = b, true); } constexpr char newl = '\n'; long long pow2(int x) {return x * x;} bool isupper(char c) {return ('A' <= c and c <= 'Z');} bool islower(char c) {return ('a' <= c and c <= 'z');} bool isnumber(char c) {return ('0' <= c and c <= '9');} // O(logX) int getdigit(long long x) { int res = 0; while(x > 0) { res++; x /= 10; } return res; } using ll = long long; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vi>; using vvll = vector<vll>; using vp = vector<pair<int, int>>; using vs = vector<string>; const ll sup = LONG_LONG_MAX / 2 - 1; const double pi = 3.141592653589793; int n; long double solve() { return 3.5 * n; } signed main() { cin >> n; cout << fixed << setprecision(3); cout << solve() << newl; }