結果
問題 | No.1841 Long Long |
ユーザー |
|
提出日時 | 2022-02-23 16:17:10 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 498 bytes |
コンパイル時間 | 2,057 ms |
コンパイル使用メモリ | 192,352 KB |
最終ジャッジ日時 | 2025-01-28 01:29:55 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define all(x) x.begin(),x.end() #define ar array #define sz(x) ((int)x.size()) template <class T,class S> inline bool chmin(T &a,const S &b) {return (a> b? a= b, 1: 0);} template <class T,class S> inline bool chmax(T &a,const S &b) {return (a< b? a= b, 1: 0);} int main(){ ios_base::sync_with_stdio(false),cin.tie(0); string s = "Long"; int n; cin >> n; while(n--) cout << s; cout << "\n"; return 0; }