結果
| 問題 | No.8128 出力するだけなのに |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-03-27 09:40:09 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 198 bytes |
| 記録 | |
| コンパイル時間 | 2,925 ms |
| コンパイル使用メモリ | 328,764 KB |
| 実行使用メモリ | 335,036 KB |
| 最終ジャッジ日時 | 2026-04-01 20:53:18 |
| 合計ジャッジ時間 | 17,676 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 TLE * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
int N;
cin >> N;
for(int i = 0; i < N; i++) cout << "Hello world!" << endl;
}