結果
| 問題 | No.1445 新入生プログラミング鯖 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-09-04 16:26:48 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 236 bytes | 
| コンパイル時間 | 1,760 ms | 
| コンパイル使用メモリ | 191,940 KB | 
| 最終ジャッジ日時 | 2025-01-24 07:53:57 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i,l,r) for(int i=(l);i<(r);++i)
typedef long long ll;
int main(){
	string s="Hello! You're new here, right? It's nice to meet you.";
	int n; cin>>n;
	rep(i,0,n) cout<<s<<endl;
}
            
            
            
        