結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー yuruhiyayuruhiya
提出日時 2020-10-18 16:07:41
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 350 ms / 1,000 ms
コード長 42 bytes
コンパイル時間 1,329 ms
コンパイル使用メモリ 120,356 KB
実行使用メモリ 131,876 KB
最終ジャッジ日時 2023-09-28 11:43:17
合計ジャッジ時間 14,160 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
131,412 KB
testcase_01 AC 347 ms
131,724 KB
testcase_02 AC 343 ms
131,496 KB
testcase_03 AC 346 ms
131,452 KB
testcase_04 AC 345 ms
131,700 KB
testcase_05 AC 340 ms
131,700 KB
testcase_06 AC 342 ms
131,572 KB
testcase_07 AC 347 ms
131,668 KB
testcase_08 AC 350 ms
131,728 KB
testcase_09 AC 344 ms
131,612 KB
testcase_10 AC 346 ms
131,560 KB
testcase_11 AC 348 ms
131,684 KB
testcase_12 AC 347 ms
131,604 KB
testcase_13 AC 348 ms
131,580 KB
testcase_14 AC 342 ms
131,596 KB
testcase_15 AC 344 ms
131,580 KB
testcase_16 AC 345 ms
131,568 KB
testcase_17 AC 341 ms
131,572 KB
testcase_18 AC 341 ms
131,708 KB
testcase_19 AC 345 ms
131,520 KB
testcase_20 AC 348 ms
131,768 KB
testcase_21 AC 347 ms
131,684 KB
testcase_22 AC 343 ms
131,640 KB
testcase_23 AC 346 ms
131,496 KB
testcase_24 AC 341 ms
131,876 KB
testcase_25 AC 345 ms
131,564 KB
testcase_26 AC 344 ms
131,720 KB
testcase_27 AC 345 ms
131,600 KB
testcase_28 AC 345 ms
131,604 KB
testcase_29 AC 344 ms
131,648 KB
testcase_30 AC 346 ms
131,572 KB
testcase_31 AC 349 ms
131,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

say words>>.&{($_%%3+$_%%5)*4||.chars}.sum
0