結果
| 問題 | No.3149 find X which satisfies with equlation |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-24 18:10:03 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 495µs | |
| コード長 | 129 bytes |
| 記録 | |
| コンパイル時間 | 11,674 ms |
| コンパイル使用メモリ | 177,248 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-11 01:48:27 |
| 合計ジャッジ時間 | 11,484 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 44 |
ソースコード
use proconio::input;
fn main() {
input! {
x: u8,
y: u8,
}
let ans = x ^ y;
println!("{ans}");
}