結果
| 問題 | No.1264 010 |
| コンテスト | |
| ユーザー |
shiomusubi496
|
| 提出日時 | 2020-10-23 22:31:56 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 1,000 ms |
| + 342µs | |
| コード長 | 134 bytes |
| 記録 | |
| コンパイル時間 | 894 ms |
| コンパイル使用メモリ | 177,932 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-21 16:27:55 |
| 合計ジャッジ時間 | 2,606 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int N;
cin>>N;
cout<<"01";
while(N--)cout<<0;
puts("");
}
shiomusubi496