結果

問題 No.2358 xy+yz+zx=N
コンテスト
ユーザー k0i
提出日時 2023-06-25 16:16:04
言語 Rust
(1.93.0 + proconio + num + itertools)
コンパイル:
/usr/bin/rustc_custom
実行:
./target/release/main
結果
RE  
実行時間 -
コード長 284 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,278 ms
コンパイル使用メモリ 190,280 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-03-23 21:45:52
合計ジャッジ時間 3,797 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#![allow(unused_imports)]
use std::collections::{HashMap, HashSet};
use itertools::Itertools;
use proconio::{
fastout, input as ip,
marker::{Bytes, Chars, Isize1, Usize1 as U1},
};
#[fastout]
pub fn main() {
ip! {
a:usize,
b:usize,
r:String
}
println!("{}",a+b);
println!("{:?}",r);
}
0