結果

問題 No.1429 Simple Dowsing
ユーザー yuruhiyayuruhiya
提出日時 2021-03-16 19:40:06
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 135,572 KB
実行使用メモリ 165,228 KB
平均クエリ数 2.00
最終ジャッジ日時 2024-07-17 11:00:24
合計ジャッジ時間 7,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 364 ms
164,876 KB
testcase_01 AC 361 ms
164,028 KB
testcase_02 AC 366 ms
164,820 KB
testcase_03 AC 368 ms
164,456 KB
testcase_04 AC 370 ms
163,380 KB
testcase_05 AC 370 ms
164,580 KB
testcase_06 AC 371 ms
164,876 KB
testcase_07 AC 374 ms
165,228 KB
testcase_08 AC 376 ms
164,696 KB
testcase_09 AC 370 ms
164,252 KB
testcase_10 AC 360 ms
163,544 KB
testcase_11 AC 366 ms
164,464 KB
testcase_12 AC 363 ms
164,672 KB
testcase_13 AC 357 ms
164,816 KB
testcase_14 AC 360 ms
164,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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