結果
| 問題 | No.1119 Division 3 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-14 13:01:34 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 166 bytes |
| 記録 | |
| コンパイル時間 | 490 ms |
| コンパイル使用メモリ | 70,876 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-17 23:43:50 |
| 合計ジャッジ時間 | 1,445 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 16 |
ソースコード
#include<iostream>
int main(){
int a,b,c;
std::cin>>a>>b>>c;
if(a%3==0||b%3==0||c%3==0){
puts("Yes");
}
else{
puts("No");
}
}