結果
問題 | No.1366 交換門松列・梅 |
ユーザー | pengin_2000 |
提出日時 | 2021-03-14 03:02:32 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 604 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-16 13:19:35 |
合計ジャッジ時間 | 665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 0 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 0 ms
6,824 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 1 ms
6,816 KB |
ソースコード
#include<stdio.h> int f(int a[]) { if (a[0] == a[1] || a[1] == a[2] || a[0] == a[2]) return -1; if (a[0]<a[1] && a[1]>a[2]) return 1; if (a[0] > a[1] && a[1] < a[2]) return 1; return -1; } int main() { int a[3], b[3]; int i, j; for (i = 0; i < 3; i++) scanf("%d", &a[i]); for (i = 0; i < 3; i++) scanf("%d", &b[i]); for (i = 0; i < 3; i++) { for (j = 0; j < 3; j++) { a[i] ^= b[j]; b[j] ^= a[i]; a[i] ^= b[j]; if (f(a) > 0 && f(b) > 0) { printf("Yes\n"); return 0; } a[i] ^= b[j]; b[j] ^= a[i]; a[i] ^= b[j]; } } printf("No\n"); return 0; }