結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-08-13 11:12:21 |
| 言語 | Python2 (2.7.18) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 249 bytes |
| コンパイル時間 | 55 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2024-11-07 16:07:52 |
| 合計ジャッジ時間 | 960 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 19 |
ソースコード
#!/usr/bin/python
# -*- coding: utf-8 -*-
### INPUT ###
#A, B = map(int, raw_input().split())
A = int(raw_input())
B = int(raw_input())
###
for i in range(A,B+1):
if "3" in str(i):
print i
elif i % 3 == 0:
print i