結果

問題 No.353 ヘイトプラス
ユーザー togaerrortogaerror
提出日時 2016-04-04 11:38:12
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 371 ms / 1,000 ms
コード長 70 bytes
コンパイル時間 1,606 ms
コンパイル使用メモリ 123,092 KB
実行使用メモリ 136,504 KB
最終ジャッジ日時 2023-09-12 00:16:11
合計ジャッジ時間 5,987 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
136,300 KB
testcase_01 AC 334 ms
134,336 KB
testcase_02 AC 363 ms
136,096 KB
testcase_03 AC 366 ms
136,380 KB
testcase_04 AC 368 ms
136,104 KB
testcase_05 AC 365 ms
136,504 KB
testcase_06 AC 367 ms
136,320 KB
testcase_07 AC 365 ms
136,040 KB
testcase_08 AC 371 ms
136,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

use v6;

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

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