Submission #1140011


Source Code Expand

#include <iostream>
#include <vector>

using namespace std;
// template for creating 2d vector
template<typename T>
vector<vector<T>> make_2d_vector(size_t rows, size_t cols, T init)
{ return vector< vector<T> >(rows, vector<T>(cols, init)); }



#define debug(x) cout << #x << "==" << x << endl;

const int inf = 100000000;

#define N 100

typedef long long ll;

int main() {
  ios::sync_with_stdio(false);

  int num = 1000000000 - 1;
  for(int i = 0; i < 100; i++) {
    cout << num - 2*i << "\n";
  }

  return 0;
}

Submission Info

Submission Time
Task A - 約数をたくさんつくろう!
User sadtomato
Language C++14 (Clang 3.8.0)
Score 881
Code Size 549 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name test_01
Score / Max Score 881 / 100000
Status
AC × 1
Set Name Test Cases
test_01 noinput.txt
Case Name Status Exec Time Memory
noinput.txt AC 1 ms 256 KB