結果

問題 No.2784 繰り上がりなし十進和
ユーザー maguroflymagurofly
提出日時 2024-06-14 21:45:36
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 26,712 ms
コンパイル使用メモリ 384,140 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-06-14 21:46:08
合計ジャッジ時間 28,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 27 ms
9,088 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 28 ms
9,088 KB
testcase_13 AC 29 ms
9,088 KB
testcase_14 AC 10 ms
7,296 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 8 ms
7,040 KB
testcase_17 AC 28 ms
7,936 KB
testcase_18 AC 26 ms
7,936 KB
testcase_19 AC 8 ms
7,168 KB
testcase_20 AC 46 ms
9,088 KB
testcase_21 AC 8 ms
7,040 KB
testcase_22 AC 48 ms
9,216 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 13 ms
7,296 KB
testcase_25 AC 22 ms
7,552 KB
testcase_26 AC 45 ms
9,216 KB
testcase_27 AC 52 ms
9,088 KB
testcase_28 AC 11 ms
7,424 KB
testcase_29 AC 53 ms
9,216 KB
testcase_30 AC 14 ms
7,424 KB
testcase_31 AC 7 ms
7,168 KB
testcase_32 AC 26 ms
8,064 KB
testcase_33 AC 22 ms
7,424 KB
testcase_34 AC 13 ms
7,296 KB
testcase_35 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: variable `A` should have a snake case name
  --> src/main.rs:20:19
   |
20 |     proconio::input!(A: [u32; 6]);
   |                      ^ help: convert the identifier to snake case: `a`
   |
   = note: `#[warn(non_snake_case)]` on by default

ソースコード

diff #

const TABLE: [[u32; 1000]; 1000] = {
	let mut table = [[0u32; 1000]; 1000];
	let mut x = 0;
	while x < 1000 {
		let mut y = 0;
		while y < 1000 {
			table[x as usize][y as usize] = (x % 10 + y % 10) % 10 + (x / 10 % 10 + y / 10 % 10) % 10 * 10 + (x / 100 + y / 100) % 10 * 100;
			y += 1;
		}
		x += 1;
	}
	table
};

fn add(x: u32, y: u32) -> u32 {
	TABLE[x as usize % 1000][y as usize % 1000] + TABLE[x as usize / 1000][y as usize / 1000] * 1000
}

fn main() {
	proconio::input!(A: [u32; 6]);
	
	let mut visited = vec![false; 1000000];
	let mut stack = vec![];
	for &a in &A {
		if !visited[a as usize] {
			visited[a as usize] = true;
			stack.push(a);
		}
	}
	
	while let Some(u) = stack.pop() {
		for &a in &A {
			let v = add(u, a);
			if !visited[v as usize] {
				visited[v as usize] = true;
				stack.push(v);
			}
		}
	}
	
	let count = (0 .. 1000000).filter(|&i| visited[i] ).count();
	println!("{count}");
}
0