結果
| 問題 |
No.1264 010
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-19 10:35:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 239 bytes |
| コンパイル時間 | 1,614 ms |
| コンパイル使用メモリ | 166,700 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-17 18:57:02 |
| 合計ジャッジ時間 | 3,395 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 < 1009; i++) {
s += '1';
}
s += '0';
cout << s << endl;
}