結果

問題 No.207 世界のなんとか
ユーザー nukosukenukosuke
提出日時 2016-10-18 02:48:35
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 388 ms / 5,000 ms
コード長 114 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 135,032 KB
実行使用メモリ 137,380 KB
最終ジャッジ日時 2024-05-03 13:20:49
合計ジャッジ時間 8,547 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
137,252 KB
testcase_01 AC 375 ms
137,120 KB
testcase_02 AC 374 ms
137,380 KB
testcase_03 AC 379 ms
137,120 KB
testcase_04 AC 375 ms
136,740 KB
testcase_05 AC 372 ms
136,612 KB
testcase_06 AC 370 ms
136,864 KB
testcase_07 AC 372 ms
137,376 KB
testcase_08 AC 372 ms
137,252 KB
testcase_09 AC 375 ms
137,124 KB
testcase_10 AC 372 ms
136,736 KB
testcase_11 AC 377 ms
136,608 KB
testcase_12 AC 388 ms
136,736 KB
testcase_13 AC 376 ms
136,740 KB
testcase_14 AC 377 ms
137,252 KB
testcase_15 AC 377 ms
136,740 KB
testcase_16 AC 377 ms
136,612 KB
testcase_17 AC 374 ms
137,092 KB
testcase_18 AC 370 ms
136,612 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my ($A, $B) = get().split(' ');
for Int($A)..Int($B) {
  say $_ if ($_ % 3 == 0) || Str($_).index('3').defined;
}
0