結果

問題 No.353 ヘイトプラス
ユーザー togaerrortogaerror
提出日時 2016-04-04 11:38:12
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 429 ms / 1,000 ms
コード長 70 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 128,056 KB
実行使用メモリ 138,768 KB
最終ジャッジ日時 2024-06-29 13:29:43
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
138,388 KB
testcase_01 AC 419 ms
137,492 KB
testcase_02 AC 420 ms
138,768 KB
testcase_03 AC 419 ms
137,488 KB
testcase_04 AC 418 ms
137,616 KB
testcase_05 AC 419 ms
138,512 KB
testcase_06 AC 429 ms
137,876 KB
testcase_07 AC 424 ms
137,104 KB
testcase_08 AC 421 ms
137,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;

my ($a, $b) = get().split(' ');

$b *= -1;
say $a - $b;
exit;
0