結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | ixTL255 |
提出日時 | 2023-01-12 22:10:10 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 16 ms / 1,000 ms |
コード長 | 563 bytes |
コンパイル時間 | 14,596 ms |
コンパイル使用メモリ | 379,572 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 14:46:57 |
合計ジャッジ時間 | 15,410 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 |
ソースコード
use std::io::*; fn main() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let _n: i64 = itr.next().unwrap().parse().unwrap(); let h: i64 = itr.next().unwrap().parse().unwrap(); let a: Vec<i64> = itr.map(|x| x.parse().unwrap()).collect(); let mut p = 1; let mut ans = "NO".to_string(); for x in a { p *= x; p %= h; if p == 0 { ans = "YES".to_string(); break; } } println!("{}", ans); }