提出 #39903494
ソースコード 拡げる
use proconio::input;
fn main() {
input! {
h: usize,
w: usize,
a: [[usize; w]; h]
};
for i in 0..h {
for j in 0..w {
print!(
"{}",
if a[i][j] == 0 {
'.'
} else {
((a[i][j] - 1) as u8 + b'A') as char
}
);
}
println!();
}
}
提出情報
| 提出日時 | |
|---|---|
| 問題 | B - ASCII Art |
| ユーザ | bouzuya |
| 言語 | Rust (1.42.0) |
| 得点 | 200 |
| コード長 | 414 Byte |
| 結果 | AC |
| 実行時間 | 7 ms |
| メモリ | 2148 KiB |
ジャッジ結果
| セット名 | Sample | All | ||||
|---|---|---|---|---|---|---|
| 得点 / 配点 | 0 / 0 | 200 / 200 | ||||
| 結果 |
|
|
| セット名 | テストケース |
|---|---|
| Sample | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt |
| All | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, 01_random_00.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 02_max_00.txt, 02_max_01.txt, 03_min_00.txt |
| ケース名 | 結果 | 実行時間 | メモリ |
|---|---|---|---|
| 00_sample_00.txt | AC | 7 ms | 1988 KiB |
| 00_sample_01.txt | AC | 2 ms | 2004 KiB |
| 00_sample_02.txt | AC | 2 ms | 2148 KiB |
| 00_sample_03.txt | AC | 2 ms | 2020 KiB |
| 01_random_00.txt | AC | 2 ms | 2096 KiB |
| 01_random_01.txt | AC | 2 ms | 2076 KiB |
| 01_random_02.txt | AC | 2 ms | 2056 KiB |
| 01_random_03.txt | AC | 2 ms | 2052 KiB |
| 01_random_04.txt | AC | 2 ms | 2100 KiB |
| 01_random_05.txt | AC | 3 ms | 2084 KiB |
| 02_max_00.txt | AC | 3 ms | 2104 KiB |
| 02_max_01.txt | AC | 4 ms | 2096 KiB |
| 03_min_00.txt | AC | 2 ms | 1988 KiB |