結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
![]() |
提出日時 | 2020-06-01 22:41:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 16 ms / 5,000 ms |
コード長 | 289 bytes |
コンパイル時間 | 1,855 ms |
コンパイル使用メモリ | 193,252 KB |
最終ジャッジ日時 | 2025-01-10 20:21:18 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i) #define pl(s) cout << s << endl; using ll = long long; constexpr long long MOD = 1000000007; int main(void) { string s; cin >> s; cout << "Hello World!" << endl; return 0; }