結果

問題 No.9000 Hello World! (テスト用)
ユーザー ともき
提出日時 2016-02-01 01:09:16
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 154 bytes
コンパイル時間 10,632 ms
コンパイル使用メモリ 392,140 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 04:19:48
合計ジャッジ時間 11,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;

fn main() {
    let mut input = String::new();
    io::stdin().read_line(&mut input).expect("Read failed");
    println!("Hello World!");
}
0