結果

問題 No.3012 岩井星人グラフ
ユーザー 中秀(nakahide)
提出日時 2025-01-25 14:50:01
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 13,278 ms
コンパイル使用メモリ 402,648 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-25 23:30:43
合計ジャッジ時間 21,069 ms
ジャッジサーバーID
(参考情報)
judge9 / judge7
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    input!{
		x: usize, y: usize,
	}
	println!("{} {}", x*y, x*y);

	// 輪っかを作る
	for i in 0..x {
		println!("{} {}", (i % x)+1, ((i+1) % x) + 1);
	}

	// 元の頂点から1本ずつ辺を生やす
	for j in 0..y-1 {
		for i in 0..x {
			println!("{} {}", 1+i + x*j, 1+i + x*(j+1));
		}
	}

}

// const MOD17: usize = 1000000007;
// const MOD93: usize = 998244353;
// const INF: usize = 1 << 60;
// let dx = vec![!0, 0, 1, 0]; // 上左下右
// let dy = vec![0, !0, 0, 1]; // 上左下右
// let d = vec!{(!0, 0), (0, !0), (1, 0), (0, 1)}; // 上左下右

#[allow(unused)]
use proconio::{input, marker::Chars, marker::Usize1};

#[allow(unused)]
use std::{
	mem::swap,
	cmp::min, cmp::max,
	cmp::Reverse,
	collections::HashSet, collections::BTreeSet,
	collections::HashMap, collections::BTreeMap,
	collections::BinaryHeap,
	collections::VecDeque,
	iter::FromIterator,
};
0