結果
問題 | No.1119 Division 3 |
ユーザー |
|
提出日時 | 2020-07-25 08:36:22 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 243 bytes |
コンパイル時間 | 123 ms |
コンパイル使用メモリ | 27,648 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 20:46:39 |
合計ジャッジ時間 | 842 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 WA * 8 |
ソースコード
#include <stdio.h> int main(int argc, char *argv[]){ long x, y, z, n; scanf("%ld%ld%ld", &x, &y, &z); n = x * y * z; if (n % 3 == 0){ printf("%s\n", "Yes"); } else { printf("%s\n", "No"); } return 0; }