結果
| 問題 | No.1119 Division 3 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-12-15 20:59:47 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| + 274µs | |
| コード長 | 205 bytes |
| 記録 | |
| コンパイル時間 | 861 ms |
| コンパイル使用メモリ | 179,076 KB |
| 実行使用メモリ | 9,712 KB |
| 最終ジャッジ日時 | 2026-08-31 12:20:49 |
| 合計ジャッジ時間 | 2,172 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 16 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int64_t x, y, z;
cin >> x >> y >> z;
if ((__int128_t)x * y * z % 3 == 0) cout << "Yes" << endl;
else cout << "No" << endl;
return 0;
}