結果
| 問題 | No.431 死亡フラグ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-12-14 19:48:31 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 476 bytes |
| 記録 | |
| コンパイル時間 | 1,089 ms |
| コンパイル使用メモリ | 199,544 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-03 16:04:36 |
| 合計ジャッジ時間 | 1,802 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 |
コンパイルメッセージ
main.cpp:7:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' [-Wc++20-extensions]
7 | void print(auto a){
| ^~~~
main.cpp:11:13: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' [-Wc++20-extensions]
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);
}