結果
| 問題 | 
                            No.431 死亡フラグ
                             | 
                    
| コンテスト | |
| ユーザー | 
                             kokoa1046
                         | 
                    
| 提出日時 | 2017-09-03 21:28:28 | 
| 言語 | Scheme  (Gauche-0.9.15)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 28 ms / 2,000 ms | 
| コード長 | 183 bytes | 
| コンパイル時間 | 39 ms | 
| コンパイル使用メモリ | 6,820 KB | 
| 実行使用メモリ | 16,000 KB | 
| 最終ジャッジ日時 | 2024-11-06 20:07:13 | 
| 合計ジャッジ時間 | 1,110 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 16 | 
ソースコード
(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")))
            
kokoa1046