結果

問題 No.353 ヘイトプラス
ユーザー momoiroshikibumomoiroshikibu
提出日時 2016-07-27 10:53:46
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 16 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 5,212 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2023-09-16 23:44:22
合計ジャッジ時間 1,259 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
11,720 KB
testcase_01 AC 15 ms
11,652 KB
testcase_02 AC 15 ms
11,712 KB
testcase_03 AC 16 ms
11,828 KB
testcase_04 AC 16 ms
11,716 KB
testcase_05 AC 15 ms
11,904 KB
testcase_06 AC 15 ms
11,636 KB
testcase_07 AC 16 ms
11,744 KB
testcase_08 AC 15 ms
11,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env gosh

(let* ((a (read))
       (b (read))
       (result (- b (* -1 a))))
  (write result)
  (newline))
0