結果
問題 | No.835 ジュース |
ユーザー | xuelei |
提出日時 | 2019-06-14 21:25:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 914 bytes |
コンパイル時間 | 1,833 ms |
コンパイル使用メモリ | 167,312 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 20:18:01 |
合計ジャッジ時間 | 2,186 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; const long double PI = acos(-1); constexpr long double EPS = 1e-15; constexpr int inf = 2e9; constexpr ll INF = 2e18; constexpr ll MOD = 1e9+7; constexpr ll MOD1 = 998244353; typedef pair<ll,ll> P; //#define all(v) (v).begin(), (v).end() #define rep(i,a,b) for (int i = (a); i < (b); i++) #define REP(i,n) rep(i,0,n) #define sz(s) (s).size() #define pb push_back #define fi first #define se second //#define mp make_pair void solve() { ll n; cin >> n; n *= 15; cout << n/10 << endl; } int main(int argc, char *argv[]){ /*Regular*/ int case_num = 1; if (argc > 1 && stoi(argv[1])) cin >> case_num; REP(case_no, case_num) { cerr << endl << "case " << case_no + 1 << endl; solve(); } // /*ICPC*/ // while (cin >> t >> d >> l, t) { // solve(); // } //solve(); return 0; }