結果

問題 No.1915 Addition
ユーザー vjudge1
提出日時 2025-07-16 16:35:00
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 25,784 ms
コンパイル使用メモリ 397,832 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-07-16 16:35:27
合計ジャッジ時間 13,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#![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);
    }
}
0