結果

問題 No.431 死亡フラグ
コンテスト
ユーザー kokoa1046
提出日時 2017-09-03 21:27:53
言語 Scheme
(Gauche-0.9.15)
コンパイル:
true
実行:
gosh _filename_
結果
RE  
実行時間 -
コード長 182 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 76 ms
コンパイル使用メモリ 8,100 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2026-05-07 01:29:37
合計ジャッジ時間 2,462 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

(define d1 (read))
(define d2 (read))
(define d3 (read))
(define s (read))
(define dsum (+ d1 d2 d3))
(if (< 0 s) (print "SURVIVED")(if (> 2 dsum) (print  "SURVIVED") (print "DEAD"))
0