結果
| 問題 | No.809 かけ算 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-02-07 11:55:58 |
| 言語 | Rust (1.92.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 328 bytes |
| 記録 | |
| コンパイル時間 | 923 ms |
| コンパイル使用メモリ | 196,948 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-02-07 11:56:17 |
| 合計ジャッジ時間 | 2,940 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 6 |
ソースコード
fn main() {
let stdin = std::io::read_to_string(std::io::stdin()).unwrap();
let mut stdin = stdin.split_ascii_whitespace();
let c: u32 = stdin.next().unwrap().parse().unwrap();
println!("{}", output(solve(c)));
}
fn solve(c: u32) -> u32 {
c
}
fn output(ans: u32) -> String {
ans.to_string() + " 1"
}