結果
問題 | No.1119 Division 3 |
ユーザー |
|
提出日時 | 2021-01-14 13:00:06 |
言語 | C++14 (gcc 10.2.0 + boost 1.73.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 126 Byte |
コンパイル時間 | 492 ms |
使用メモリ | 3,364 KB |
最終ジャッジ日時 | 2021-01-14 13:00:09 |
合計ジャッジ時間 | 2,574 ms |
テストケース
テストケース表示入力 | 結果 | 実行時間 使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
3,156 KB |
testcase_01 | AC | 2 ms
3,060 KB |
testcase_02 | AC | 2 ms
3,160 KB |
testcase_03 | AC | 2 ms
3,156 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
3,216 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
3,140 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
3,208 KB |
testcase_17 | AC | 2 ms
3,148 KB |
ソースコード
#include<iostream> int main(){ int a,b,c; std::cin>>a>>b>>c; std::cout<<(a*b*c%3 == 0?"Yes":"No") << std::endl; }