結果

問題 No.1429 Simple Dowsing
ユーザー yuruhiyayuruhiya
提出日時 2021-03-16 19:39:15
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 122,556 KB
実行使用メモリ 147,396 KB
平均クエリ数 2.00
最終ジャッジ日時 2023-09-24 10:11:17
合計ジャッジ時間 8,164 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 399 ms
145,800 KB
testcase_01 AC 389 ms
147,396 KB
testcase_02 AC 390 ms
146,324 KB
testcase_03 AC 389 ms
146,000 KB
testcase_04 AC 387 ms
146,236 KB
testcase_05 AC 378 ms
145,660 KB
testcase_06 AC 374 ms
145,252 KB
testcase_07 AC 373 ms
145,424 KB
testcase_08 AC 372 ms
145,684 KB
testcase_09 AC 384 ms
146,336 KB
testcase_10 AC 384 ms
145,624 KB
testcase_11 AC 378 ms
145,968 KB
testcase_12 AC 377 ms
145,936 KB
testcase_13 AC 378 ms
145,368 KB
testcase_14 AC 382 ms
146,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

say '?0 0?1 0!';
$*OUT.flush;
my $t = get;
my $u = get;
my $a = ($t - $u + 1) +> 1;
my $b = ($t - $a * $a) ** .5;
put [$a, $b];
0