結果

問題 No.207 世界のなんとか
ユーザー nukosukenukosuke
提出日時 2016-10-18 02:48:35
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 350 ms / 5,000 ms
コード長 114 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 146,204 KB
実行使用メモリ 147,288 KB
最終ジャッジ日時 2024-11-24 13:30:27
合計ジャッジ時間 7,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
147,156 KB
testcase_01 AC 340 ms
147,160 KB
testcase_02 AC 342 ms
146,900 KB
testcase_03 AC 337 ms
147,040 KB
testcase_04 AC 340 ms
146,900 KB
testcase_05 AC 342 ms
147,032 KB
testcase_06 AC 347 ms
146,648 KB
testcase_07 AC 344 ms
147,032 KB
testcase_08 AC 339 ms
147,284 KB
testcase_09 AC 341 ms
147,044 KB
testcase_10 AC 335 ms
147,160 KB
testcase_11 AC 335 ms
147,288 KB
testcase_12 AC 339 ms
146,780 KB
testcase_13 AC 341 ms
147,044 KB
testcase_14 AC 341 ms
147,028 KB
testcase_15 AC 341 ms
146,900 KB
testcase_16 AC 346 ms
146,776 KB
testcase_17 AC 335 ms
147,172 KB
testcase_18 AC 342 ms
147,044 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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