結果

問題 No.1119 Division 3
ユーザー subsnsubsn
提出日時 2023-06-15 09:14:45
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 26,776 KB
実行使用メモリ 5,256 KB
最終ジャッジ日時 2023-09-05 15:26:21
合計ジャッジ時間 1,326 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 0 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 0 ms
4,376 KB
testcase_04 AC 0 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 WA -
testcase_07 AC 0 ms
4,380 KB
testcase_08 AC 0 ms
4,380 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 0 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	long long int a, b, c;
	scanf("%lld %lld %lld", &a, &b, &c);
	if ((a * b * c) % 3 == 0)puts("Yes");else puts("No");
}
0