結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
|
提出日時 | 2021-08-20 20:46:34 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 18 ms / 5,000 ms |
コード長 | 524 bytes |
コンパイル時間 | 2,047 ms |
コンパイル使用メモリ | 189,600 KB |
最終ジャッジ日時 | 2025-01-23 23:04:32 |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 |
ソースコード
#include "bits/stdc++.h" using namespace std; #define pb push_back #define all(v) v.begin(), v.end() #define printv(v) for(auto i: v) cout<<i<<' '; #define endl "\n" #define rep(i,l,r) for(int i=l; i<r; i++) #define printmat(v) rep(i,0,v.size()){rep(j,0,v[0].size()){cout<<v[i][j]<<' ';}cout<<endl;} typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef pair<int,int> pi; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cout<<"Hello World!"; }