結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-30 15:34:37 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 1,144 bytes |
| コンパイル時間 | 12,528 ms |
| コンパイル使用メモリ | 395,284 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-04 02:15:22 |
| 合計ジャッジ時間 | 13,677 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
use std::io::{self, Read};
#[derive(Debug)]
struct Input {
a: i32,
b: i32,
}
fn next_token(cin_lock: &mut io::StdinLock) -> String {
cin_lock
.by_ref()
.bytes()
.map(|c| c.unwrap() as char)
.skip_while(|c| c.is_whitespace())
.take_while(|c| !c.is_whitespace())
.collect::<String>()
}
fn read_input(cin_lock: &mut io::StdinLock) -> Input {
Input {
a: next_token(cin_lock).parse().unwrap(),
b: next_token(cin_lock).parse().unwrap(),
}
}
fn solve(input: Input, _cin_lock: &mut io::StdinLock) {
let predicate = |x: &i32| is_multiples_of_n(3, *x) || has_n(3, *x);
let answers = (input.a..=input.b).filter(predicate);
for ans in answers {
println!("{}", ans);
}
}
fn is_multiples_of_n(n: i32, x: i32) -> bool {
x % n == 0
}
fn has_n(n: i32, mut x: i32) -> bool {
while x > 0 {
if x % 10 == n {
return true;
}
x /= 10;
}
false
}
fn main() {
let cin = io::stdin();
let mut cin_lock = cin.lock();
let input = read_input(&mut cin_lock);
solve(input, &mut cin_lock);
}