結果

問題 No.830 日本人の9割は90%
ユーザー 3_3_nk3_3_nk
提出日時 2019-05-24 21:21:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,301 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 81,128 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 12:15:02
合計ジャッジ時間 1,270 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <cstdlib>
#include <climits>
#include <cfloat>
#include <cstdint>
#include <iomanip>
#include <iostream>
#include <map>
#include <set>
#include <vector>
#include <array>
#include <queue>
#include <stack>
#include <utility>
typedef long long LL;
#define rep(i, x) for(LL (i) = 0; (i) < (x); (i) ++)
#define prep(i, s, x) for(LL (i) = (s); (i) < (x); (i) ++) 
#define mrep(i, s, x) for(LL (i) = (s); (i) >= (x); (i) --)
#define irep(i) for(LL (i) = 0; ; (i) ++)
#define MOD 1000000007LL
#define PI (acos(-1))
// long long型の最大値:LLONG_MAX
// long long型の最小値:LLONG_MIN
// int型の最大値:INT_MAX
// int型の最小値:INT_MIN
// 絶対値:abs(n)
// べき乗:pow(a, b)
// ルート:sqrt(n)
// 文字列反転:reverse(str.begin(), str.end())
// 降順(大きい順)にソート:第3引数にgreater<int>()
// 重複する要素を削除しvectorの長さを調節する:v.erase(unique(v.begin(), v.end()), v.end())
// stackは後に入れたものから、queueは先に入れたものから
// stack.top() queue.front() で要素にアクセス
// ループ用変数以外はlong long型にしよう
using namespace std;

int main(){
    int n;
    cin >> n;
    cout << n*10 << endl;
    return 0;
}
0