結果
| 問題 | No.1841 Long Long |
| コンテスト | |
| ユーザー |
sorag
|
| 提出日時 | 2022-07-19 15:43:46 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 287 ms |
| コンパイル使用メモリ | 71,896 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-03 11:14:57 |
| 合計ジャッジ時間 | 1,568 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 15 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main() {
int n;
string s="long";
cin >> n;
for (int i = 0; i < n; i++)
{
cout << s;
}
return 0;
}
sorag