提出 #20207216


ソースコード 拡げる

#include <iostream>
#include <string>

using namespace std;

int main()
{
  int a, b;
  cin >> a >> b;
  auto result = (a * b) % 2 == 0 ? "Even" : "Odd";
  cout << result << endl;
  
  return 0;
}

提出情報

提出日時
問題 A - Product
ユーザ lipsum
言語 C++ (Clang 10.0.0)
得点 100
コード長 211 Byte
結果 AC
実行時間 12 ms
メモリ 3016 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 100 / 100
結果
AC × 2
AC × 7
セット名 テストケース
Sample 0_000.txt, 0_001.txt
All 0_000.txt, 0_001.txt, 1_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt
ケース名 結果 実行時間 メモリ
0_000.txt AC 12 ms 2828 KiB
0_001.txt AC 2 ms 3016 KiB
1_002.txt AC 2 ms 2856 KiB
1_003.txt AC 2 ms 3008 KiB
1_004.txt AC 2 ms 2912 KiB
1_005.txt AC 2 ms 2960 KiB
1_006.txt AC 3 ms 2960 KiB