結果
問題 |
No.1915 Addition
|
ユーザー |
|
提出日時 | 2025-07-15 17:46:16 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 285 bytes |
コンパイル時間 | 23,256 ms |
コンパイル使用メモリ | 396,964 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-07-15 17:46:52 |
合計ジャッジ時間 | 14,553 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 |
ソースコード
#![allow(unused_imports,non_snake_case,dead_code)] use std::{cmp::Reverse as Rev,ops::Range,collections::*,iter::*}; use proconio::{marker::*,*}; #[fastout] fn main(){ input!{ t:usize, n:[usize;t], } for i in 0..t{ println!("{}",n[i]*2); } }