結果
| 問題 | No.1934 Four Fruits |
| コンテスト | |
| ユーザー |
theory_and_me
|
| 提出日時 | 2022-05-13 21:24:45 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 165 bytes |
| 記録 | |
| コンパイル時間 | 2,809 ms |
| コンパイル使用メモリ | 197,320 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-04-03 06:42:52 |
| 合計ジャッジ時間 | 2,385 ms |
|
ジャッジサーバーID (参考情報) |
judge4_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
コンパイルメッセージ
warning: unused import: `marker::*`
--> src/main.rs:2:16
|
2 | use proconio::{marker::*};
| ^^^^^^^^^
|
= note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
ソースコード
use proconio::input;
use proconio::{marker::*};
fn main() {
input! {
a: usize,
b: usize,
c: usize,
};
println!("{}", a^b^c);
}
theory_and_me