結果
| 問題 | No.8128 出力するだけなのに |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-04-01 22:33:31 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 46 ms / 500 ms |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 3,311 ms |
| コンパイル使用メモリ | 332,364 KB |
| 実行使用メモリ | 340,104 KB |
| 最終ジャッジ日時 | 2026-04-01 22:33:46 |
| 合計ジャッジ時間 | 14,419 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
int main() {
std::cin.tie(nullptr);
std::ios_base::sync_with_stdio(false);
int N;
std::cin>>N;
for(int i=0;i<N;i++)std::cout<<"Hello world!\n";
}