結果

問題 No.887 Collatz
ユーザー kotatsugamekotatsugame
提出日時 2019-09-21 00:55:58
言語 Raku
(rakudo v2023.09)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 51 bytes
コンパイル時間 1,699 ms
コンパイル使用メモリ 121,920 KB
実行使用メモリ 132,808 KB
最終ジャッジ日時 2023-10-13 09:20:39
合計ジャッジ時間 13,508 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
131,788 KB
testcase_01 AC 381 ms
132,252 KB
testcase_02 AC 372 ms
132,092 KB
testcase_03 AC 366 ms
131,880 KB
testcase_04 AC 369 ms
131,812 KB
testcase_05 AC 366 ms
132,048 KB
testcase_06 AC 369 ms
131,984 KB
testcase_07 AC 368 ms
132,028 KB
testcase_08 AC 374 ms
132,072 KB
testcase_09 AC 373 ms
132,048 KB
testcase_10 AC 364 ms
131,796 KB
testcase_11 AC 359 ms
131,912 KB
testcase_12 AC 374 ms
132,112 KB
testcase_13 AC 360 ms
131,700 KB
testcase_14 AC 364 ms
132,020 KB
testcase_15 AC 379 ms
132,292 KB
testcase_16 AC 378 ms
132,272 KB
testcase_17 AC 392 ms
132,616 KB
testcase_18 AC 380 ms
132,296 KB
testcase_19 AC 379 ms
132,268 KB
testcase_20 AC 388 ms
132,516 KB
testcase_21 AC 365 ms
132,396 KB
testcase_22 AC 367 ms
132,112 KB
testcase_23 AC 353 ms
131,956 KB
testcase_24 AC 367 ms
132,464 KB
testcase_25 AC 370 ms
132,444 KB
testcase_26 AC 364 ms
132,268 KB
testcase_27 AC 360 ms
132,088 KB
testcase_28 AC 372 ms
132,512 KB
testcase_29 AC 393 ms
132,808 KB
testcase_30 AC 400 ms
132,580 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

(($_=(+get,{$_%2??$_*3+1!!$_/2}...1))-1,.max)>>.say
0