結果

問題 No.3107 45^2
ユーザー rhoo
提出日時 2025-04-18 20:12:04
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 14,054 ms
コンパイル使用メモリ 400,756 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-18 20:12:25
合計ジャッジ時間 14,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports,non_snake_case,dead_code)]
use std::{cmp::Reverse as Rev,collections::*,iter::*};
use proconio::{marker::*,*};


#[fastout]
fn main(){
    input!{
        n:usize,
    }
    println!("{}",n*n);
}
0