結果
| 問題 | No.1445 新入生プログラミング鯖 |
| コンテスト | |
| ユーザー |
_youte_ne
|
| 提出日時 | 2021-04-15 05:24:13 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 229 bytes |
| 記録 | |
| コンパイル時間 | 500 ms |
| コンパイル使用メモリ | 75,964 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-03-21 22:05:16 |
| 合計ジャッジ時間 | 1,286 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 10 |
ソースコード
#include <iostream>
#include <string>
int main() {
int N;
std::cin >> N;
std::string ss = "Hello!You're new here, right? It's nice to meet you.";
for (int i = 0; i < N; ++i) {
std::cout << ss << std::endl;
}
return 0;
}
_youte_ne