結果
| 問題 |
No.796 well known
|
| コンテスト | |
| ユーザー |
polyomino_24
|
| 提出日時 | 2019-03-15 23:42:45 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 140 bytes |
| コンパイル時間 | 431 ms |
| コンパイル使用メモリ | 55,328 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-01 22:07:14 |
| 合計ジャッジ時間 | 3,327 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 15 |
ソースコード
#include <iostream>
#include <string>
int main(){
int n;
std::cin >> n;
std::cout << "1" << std::string('3',n-1) << std::endl;
}
polyomino_24