結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー yuruhiyayuruhiya
提出日時 2020-10-17 19:06:45
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 358 ms / 1,000 ms
コード長 43 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 134,652 KB
実行使用メモリ 144,368 KB
最終ジャッジ日時 2024-07-21 03:00:22
合計ジャッジ時間 13,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
144,108 KB
testcase_01 AC 354 ms
144,364 KB
testcase_02 AC 350 ms
144,108 KB
testcase_03 AC 352 ms
143,984 KB
testcase_04 AC 349 ms
143,980 KB
testcase_05 AC 347 ms
143,984 KB
testcase_06 AC 352 ms
143,984 KB
testcase_07 AC 349 ms
144,104 KB
testcase_08 AC 351 ms
144,368 KB
testcase_09 AC 355 ms
143,984 KB
testcase_10 AC 355 ms
144,108 KB
testcase_11 AC 351 ms
144,248 KB
testcase_12 AC 353 ms
144,112 KB
testcase_13 AC 351 ms
143,984 KB
testcase_14 AC 358 ms
144,240 KB
testcase_15 AC 351 ms
144,252 KB
testcase_16 AC 354 ms
143,980 KB
testcase_17 AC 353 ms
144,368 KB
testcase_18 AC 351 ms
144,108 KB
testcase_19 AC 352 ms
144,240 KB
testcase_20 AC 353 ms
144,236 KB
testcase_21 AC 345 ms
144,112 KB
testcase_22 AC 347 ms
143,848 KB
testcase_23 AC 342 ms
143,868 KB
testcase_24 AC 347 ms
143,980 KB
testcase_25 AC 346 ms
144,240 KB
testcase_26 AC 342 ms
144,236 KB
testcase_27 AC 349 ms
144,240 KB
testcase_28 AC 353 ms
144,240 KB
testcase_29 AC 344 ms
143,856 KB
testcase_30 AC 348 ms
143,980 KB
testcase_31 AC 345 ms
144,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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