結果

問題 No.207 世界のなんとか
ユーザー ktrk15
提出日時 2015-05-22 16:52:18
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 135 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-07-06 04:44:57
合計ジャッジ時間 1,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 11 RE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

input = raw_input()
A = int(input.split(' ')[0])
B = int(input.split(' ')[1])
for i in range(B-A,A):
    if i % 3 == 0:
        print i
0