結果

問題 No.1934 Four Fruits
ユーザー n_getn_get
提出日時 2022-07-12 12:34:19
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-06-23 08:16:49
合計ジャッジ時間 1,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
16,384 KB
testcase_01 AC 23 ms
16,256 KB
testcase_02 WA -
testcase_03 AC 20 ms
16,384 KB
testcase_04 AC 21 ms
16,384 KB
testcase_05 AC 20 ms
16,256 KB
testcase_06 AC 21 ms
16,384 KB
testcase_07 AC 21 ms
16,256 KB
testcase_08 WA -
testcase_09 AC 20 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi-1)
(let1 ls (sort (list-tabulate 3 (^_ (read))))
      (print (cond [(apply = ls) (car ls)]
                   [(apply < ls) (- 6 (apply + ls))]
                   [else (- (apply + ls) (cadr ls))])))
0