結果

問題 No.264 じゃんけん
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-04-01 17:40:29
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-12-17 21:50:22
合計ジャッジ時間 1,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,896 KB
testcase_01 AC 29 ms
16,896 KB
testcase_02 AC 30 ms
17,024 KB
testcase_03 AC 30 ms
16,896 KB
testcase_04 AC 27 ms
17,152 KB
testcase_05 AC 29 ms
16,896 KB
testcase_06 AC 30 ms
16,896 KB
testcase_07 AC 30 ms
17,024 KB
testcase_08 AC 31 ms
17,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define-values (n k)
 (apply values (map string->number (string-split (read-line) " "))))

(print (case (mod (+ 3 (- n k)) 3)
         ((0) "Drew")
         ((1) "Lost")
         ((2) "Won")))
0