結果

問題 No.1915 Addition
ユーザー mmn15277198
提出日時 2022-04-30 23:09:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 992 ms
コンパイル使用メモリ 90,852 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 02:54:24
合計ジャッジ時間 1,933 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <queue>
#include <map>
#include <cmath>
#include <iomanip>
#include <set>
#include <cstdio>
#include <string>

using namespace std;

int main() {
  int t;
  cin >> t;
  while (t--) {
    long long n;
    cin >> n;
    cout << n * 2 << endl;
  }
  return 0;
}
0