結果

問題 No.1119 Division 3
ユーザー mesame3993mesame3993
提出日時 2021-11-18 21:39:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 71,492 KB
最終ジャッジ日時 2023-08-27 16:04:01
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 72 ms
71,276 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 72 ms
71,276 KB
testcase_07 AC 73 ms
71,116 KB
testcase_08 AC 74 ms
71,440 KB
testcase_09 AC 73 ms
71,340 KB
testcase_10 AC 72 ms
71,360 KB
testcase_11 AC 72 ms
71,400 KB
testcase_12 AC 71 ms
71,152 KB
testcase_13 WA -
testcase_14 AC 73 ms
71,148 KB
testcase_15 WA -
testcase_16 AC 73 ms
71,068 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin
  readline=stdin.readline
  x,y,z = map(int, readline().split())
  if x%3==0 or y%3--0 or z%3==0:
    print('Yes')
  else:
    print('No')
main()
0