結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | 平松裕哉 |
提出日時 | 2024-12-13 21:08:19 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,192 bytes |
コンパイル時間 | 3,579 ms |
コンパイル使用メモリ | 273,152 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-13 21:08:25 |
合計ジャッジ時間 | 4,465 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> using namespace std; //using namespace atcoder; //using mint = modint998244353; //Mod #define rep(i, n) for (int i = 0; i < (int)(n); i++) //forループ #define reps(i, m, n) for (int i = (int)(m); i < (int)(n); i++) //forループ(開始位置指定) #define rrep(i, n) for (int i = n-1; i >= 0; i--) //forループ逆順 #define rreps(i, n, m) for (int i = (int)(n-1); i >= (int)(m); i--) //forループ逆順(開始位置指定) #define all(a) (a).begin(), (a).end() //all #define rall(a) (a).rbegin(), (a).rend() //逆all #define ll long long //long long型 #define ull unsigned long long //unsigned long long型 #define alphabet "abcdefghijklmnopqrstuvwxyz" //英小文字列 #define alphabet_A "ABCDEFGHIJKLMNOPQRSTUVWXYZ" //英大文字列 #define pi acos(-1) //円周率 #define move_X4 vector<int> {-1, 0, 1, 0} //4方向への移動 #define move_Y4 vector<int> {0, -1, 0, 1} //4方向への移動 #define move_X8 vector<int> {1, 1, 0, -1, -1, -1, 0, 1} //8方向への移動 #define move_Y8 vector<int> {0, 1, 1, 1, 0, -1, -1, -1} //8方向への移動 int main() { string s;; cin>>s; cout<<"Hello World"<<endl; }