結果
| 問題 | No.3629 Maximize Subsequense Mex |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-14 07:25:04 |
| 言語 | Rust (1.97.1 + proconio + num + itertools + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 284 bytes |
| 記録 | |
| コンパイル時間 | 9,809 ms |
| コンパイル使用メモリ | 178,268 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-14 07:25:27 |
| 合計ジャッジ時間 | 8,981 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 3 WA * 24 |
ソースコード
use proconio::input;
fn main(){
input!{
t: usize,
ns: [usize; t],
}
for n in ns{
for i in (0..n%10).rev(){
print!("{}", i);
}
for _ in 0..n/10{
print!("9876543210");
}
println!("");
}
}