結果
| 問題 | No.207 世界のなんとか |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-08-13 11:12:21 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 249 bytes |
| 記録 | |
| コンパイル時間 | 58 ms |
| コンパイル使用メモリ | 80,144 KB |
| 実行使用メモリ | 81,016 KB |
| 最終ジャッジ日時 | 2026-07-18 07:13:25 |
| 合計ジャッジ時間 | 2,731 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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