結果

問題 No.835 ジュース
ユーザー RubikunRubikun
提出日時 2019-06-14 21:50:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 1,739 ms
コンパイル使用メモリ 166,492 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 04:10:40
合計ジャッジ時間 2,013 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007;

int main(){

    ll N;cin>>N;
    cout<<N*3/2<<endl;
}
0