結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
![]() |
提出日時 | 2025-07-27 21:32:55 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 713 bytes |
コンパイル時間 | 954 ms |
コンパイル使用メモリ | 94,824 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-07-27 21:32:57 |
合計ジャッジ時間 | 1,884 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <iomanip> using namespace std; typedef long long ll; // const ll INF64 = 1LL << 60; const ll INF64 = ((1LL<<62)-(1LL<<31)); // 10^18より大きく、かつ2倍しても負にならない数 const int INF32 = 0x3FFFFFFF; // =(2^30)-1 10^9より大きく、かつ2倍しても負にならない数 template<class T> inline bool chmin(T &a, T b) { if(a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T &a, T b) { if(a < b) { a = b; return true; } return false; } #define YesNo(T) cout << ((T) ? "Yes" : "No") << endl; // T:bool int main(void) { cout << "Hello World!" << endl; return 0; }