結果
問題 |
No.431 死亡フラグ
|
ユーザー |
|
提出日時 | 2021-12-14 19:48:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 476 bytes |
コンパイル時間 | 1,777 ms |
コンパイル使用メモリ | 186,028 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-23 19:40:21 |
合計ジャッジ時間 | 2,441 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
コンパイルメッセージ
main.cpp:7:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' 7 | void print(auto a){ | ^~~~ main.cpp:11:13: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' 11 | void printL(auto a){ | ^~~~
ソースコード
#define _GLIBCXX_DEBUG #define ll long long #include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; void print(auto a){ cout << a; } void printL(auto a){ cout << a << endl; } void fix(int n){ cout << fixed << setprecision(n); } void jud(int a1, int a2, int a3, int s){ int a = a1+a2+a3; if(s == 1 or a < 2) printL("SURVIVED"); else printL("DEAD"); } int main(){ int D1, D2, D3, S; cin >> D1 >> D2 >> D3 >> S; jud(D1, D2, D3, S); }