結果

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

ソースコード

diff #

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