結果
問題 |
No.3107 45^2
|
ユーザー |
|
提出日時 | 2025-04-19 18:57:25 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 185 bytes |
コンパイル時間 | 12,185 ms |
コンパイル使用メモリ | 395,124 KB |
実行使用メモリ | 7,844 KB |
最終ジャッジ日時 | 2025-04-19 18:57:39 |
合計ジャッジ時間 | 12,380 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 12 |
ソースコード
use std::io; fn main() { let mut input = String::new(); io::stdin().read_line(&mut input).unwrap(); let number: i32 = input.trim().parse().unwrap(); println!("{}", number.pow(2)) }