結果
問題 | No.435 占い(Extra) |
ユーザー | titia |
提出日時 | 2023-04-26 02:45:12 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,933 bytes |
コンパイル時間 | 14,546 ms |
コンパイル使用メモリ | 385,404 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 11:24:23 |
合計ジャッジ時間 | 19,039 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 15 ms
6,816 KB |
testcase_13 | AC | 15 ms
6,820 KB |
testcase_14 | AC | 14 ms
6,816 KB |
testcase_15 | AC | 16 ms
6,816 KB |
testcase_16 | AC | 31 ms
6,816 KB |
testcase_17 | AC | 170 ms
6,816 KB |
testcase_18 | AC | 15 ms
6,820 KB |
testcase_19 | AC | 14 ms
6,820 KB |
testcase_20 | AC | 135 ms
6,820 KB |
testcase_21 | AC | 138 ms
6,816 KB |
testcase_22 | AC | 134 ms
6,816 KB |
testcase_23 | AC | 136 ms
6,816 KB |
testcase_24 | WA | - |
testcase_25 | AC | 291 ms
6,820 KB |
testcase_26 | AC | 133 ms
6,816 KB |
testcase_27 | AC | 139 ms
6,816 KB |
testcase_28 | AC | 1 ms
6,816 KB |
testcase_29 | AC | 138 ms
6,816 KB |
testcase_30 | WA | - |
testcase_31 | AC | 110 ms
6,816 KB |
testcase_32 | AC | 117 ms
6,820 KB |
testcase_33 | AC | 142 ms
6,820 KB |
testcase_34 | WA | - |
testcase_35 | AC | 134 ms
6,816 KB |
コンパイルメッセージ
warning: unnecessary parentheses around `while` condition --> src/main.rs:51:19 | 51 | while (x%3==0){ | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 51 - while (x%3==0){ 51 + while x%3==0 { | warning: unnecessary parentheses around `while` condition --> src/main.rs:60:19 | 60 | while (x%3==0){ | ^ ^ | help: remove these parentheses | 60 - while (x%3==0){ 60 + while x%3==0 { | warning: unused variable: `tests` --> src/main.rs:10:9 | 10 | for tests in 0..t{ | ^^^^^ help: if this is intentional, prefix it with an underscore: `_tests` | = note: `#[warn(unused_variables)]` on by default warning: variable `INV` should have a snake case name --> src/main.rs:8:9 | 8 | let INV=vec![0,1,5,0,7,2,0,4,8]; | ^^^ help: convert the identifier to snake case: `inv` | = note: `#[warn(non_snake_case)]` on by default
ソースコード
fn main() { let t: usize = { let mut line: String = String::new(); std::io::stdin().read_line(&mut line).unwrap(); line.trim().parse().unwrap() }; let INV=vec![0,1,5,0,7,2,0,4,8]; for tests in 0..t{ let (n,x,a,b,m): (usize, i32, i32, i32, i32) = { let mut line: String = String::new(); std::io::stdin().read_line(&mut line).unwrap(); let mut iter = line.split_whitespace(); ( iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap() ) }; let mut now=x; let mut flag0=0; if now==0{ flag0=1; } let mut ans=0; let mut two: i32=1; let mut three=0; for i in 0..n{ if i==0{ ans=(ans+now%10)%9; continue; } now=((now^a)+b)%m; if i==n-1{ ans=(ans+now%10)%9; continue; } if now%10!=0{ flag0=0; } let mut x:i32=i as i32; while (x%3==0){ x/=3; three-=1; } two=two*INV[(x%9) as usize]%9; x=(n-i) as i32; while (x%3==0){ x/=3; three+=1; } two=two*x%9; if three==0{ ans=(ans+(now%10)*two)%9; } else if three==1{ ans=(ans+(now%10)*two*3)%9; } } if flag0==1{ println!("0"); continue; } if ans==0{ ans=9; } println!("{}", ans); } }