結果
問題 | No.1200 お菓子配り-3 |
ユーザー | Strorkis |
提出日時 | 2020-08-28 23:27:22 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,805 bytes |
コンパイル時間 | 12,833 ms |
コンパイル使用メモリ | 382,372 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 17:09:42 |
合計ジャッジ時間 | 24,862 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 1 ms
6,816 KB |
testcase_28 | AC | 1,386 ms
6,820 KB |
testcase_29 | AC | 1,016 ms
6,820 KB |
testcase_30 | AC | 1,017 ms
6,820 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
use std::io::{BufRead, Write}; fn main () { let stdin = std::io::stdin(); let stdout = std::io::stdout(); let mut reader = std::io::BufReader::new(stdin.lock()); let mut writer = std::io::BufWriter::new(stdout.lock()); let s: usize = { let mut buf = String::new(); reader.read_line(&mut buf).unwrap(); buf.trim_end().parse().unwrap() }; for _ in 0..s { let (x, y): (i64, i64) = { let mut buf = String::new(); reader.read_line(&mut buf).unwrap(); let mut iter = buf.split_whitespace(); ( iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap(), ) }; let z = x + y; let mut ans = 0; let mut i = 2; while i * i <= z { if z % i == 0 { { let a = i - 1; let q = z / i; if a > 1 && (x - q) % (a - 1) == 0 && (y - q) % (a - 1) == 0 { let b = (x - q) % (a - 1); let c = (y - q) % (a - 1); if b + c == q { ans += 1; } } } if i * i != z { let a = z / i - 1; let q = i; if a > 1 && (x - q) % (a - 1) == 0 && (y - q) % (a - 1) == 0 { let b = (x - q) % (a - 1); let c = (y - q) % (a - 1); if b + c == q { ans += 1; } } } } i += 1; } writeln!(writer, "{}", ans).unwrap(); } }