結果
問題 | No.2929 Miracle Branch |
ユーザー | tnodino |
提出日時 | 2024-10-05 17:49:21 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,138 bytes |
コンパイル時間 | 13,532 ms |
コンパイル使用メモリ | 377,468 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-05 17:49:41 |
合計ジャッジ時間 | 18,245 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
use proconio::input; use proconio::fastout; #[fastout] #[allow(non_snake_case)] fn main() { input! { mut X: usize, } assert!(1 <= X && X <= 1_000_000_000_000_000_000); if X == 1 { println!("2"); println!("1 2"); println!("b g"); return; } let n = (X as f64).sqrt() as usize; let mut p = Vec::new(); while X % 4 == 0 { p.push(4); X /= 4; } for i in 2..=n { while X % i == 0 { p.push(i); X /= i; } } if X > 1 { p.push(X); } let N = p.len(); let s = p.iter().sum::<usize>(); if N + s > 200_000 { println!("-1"); return; } println!("{}", N + s); let mut j = N; for i in 0..N { for _ in 0..p[i] { println!("{} {}", i+1, j+1); j += 1; } if i < N - 1 { println!("{} {}", i+1, i+2); } } println!("{} {}", "b".repeat(N).chars().map(|x| x.to_string()).collect::<Vec<String>>().join(" "), "g".repeat(s).chars().map(|x| x.to_string()).collect::<Vec<String>>().join(" ")); }