結果
問題 | No.701 ひとりしりとり |
ユーザー | ノロケ・ウイルス |
提出日時 | 2018-06-15 22:54:49 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 700 bytes |
コンパイル時間 | 12,698 ms |
コンパイル使用メモリ | 377,988 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-30 15:13:41 |
合計ジャッジ時間 | 14,943 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
use std::io::{Read, stdin}; fn main() { let mut buf = String::new(); stdin().read_to_string(&mut buf).unwrap(); let mut tok = buf.split_whitespace(); let mut get = || tok.next().unwrap(); macro_rules! get { ($t:ty) => (get().parse::<$t>().unwrap()); () => (get!(i64)); } let n = get!(u32); let mut ans = String::new(); let mut last = 'a'; for i in 0..n { ans.push(last); let mut x = i + 1; while x > 0 { let c = x % 26 + 'a' as u32; let c = c as u8 as char; ans.push(c); last = c; x /= 26; } ans.push('\n'); } print!("{}", ans); }