結果
問題 |
No.1264 010
|
ユーザー |
|
提出日時 | 2023-05-19 10:34:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 227 bytes |
コンパイル時間 | 1,732 ms |
コンパイル使用メモリ | 166,128 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-17 18:56:47 |
合計ジャッジ時間 | 3,478 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | WA * 9 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using Graph = vector<vector<int>>; int main() { int N; cin >> N; string s = ""; for(int i = 0; i < 1010; i++) { s += '1'; } cout << s << endl; }