結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | m_patel |
提出日時 | 2021-08-20 20:46:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 524 bytes |
コンパイル時間 | 2,182 ms |
コンパイル使用メモリ | 198,476 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-14 02:01:12 |
合計ジャッジ時間 | 2,502 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
ソースコード
#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!"; }