結果

問題 No.3159 Just Answer 10 Integers!
ユーザー butsurizuki
提出日時 2025-05-04 01:31:02
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 3,520 ms
コンパイル使用メモリ 272,936 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-05-23 18:30:20
合計ジャッジ時間 4,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 1 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

// AC only n=2
#include<bits/stdc++.h>

using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n;
  cin >> n;
  for(int i=0;i<n;i++){
    if(i){cout << " ";}
    cout << 1000000000-i;
  }cout << "\n";

  return 0;
}
0