結果

問題 No.431 死亡フラグ
ユーザー togaerrortogaerror
提出日時 2016-10-19 22:31:29
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 146,180 KB
実行使用メモリ 137,492 KB
最終ジャッジ日時 2024-05-03 13:21:42
合計ジャッジ時間 8,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 441 ms
137,104 KB
testcase_01 AC 436 ms
137,236 KB
testcase_02 AC 443 ms
137,232 KB
testcase_03 AC 446 ms
137,232 KB
testcase_04 AC 441 ms
136,976 KB
testcase_05 AC 439 ms
137,364 KB
testcase_06 AC 437 ms
137,364 KB
testcase_07 AC 433 ms
137,232 KB
testcase_08 AC 439 ms
136,976 KB
testcase_09 AC 436 ms
137,492 KB
testcase_10 AC 435 ms
137,360 KB
testcase_11 AC 438 ms
137,360 KB
testcase_12 AC 434 ms
136,848 KB
testcase_13 AC 439 ms
137,108 KB
testcase_14 AC 437 ms
137,232 KB
testcase_15 AC 442 ms
137,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;

my @d = get().chomp.split(' ');
if (@d[3] == 1) {
	say "SURVIVED";
} else {
	if (@d[0] + @d[1] + @d[2] < 2) {
		say "SURVIVED";
	} else {
		say "DEAD";
	}
}

exit;
0