結果

問題 No.1119 Division 3
ユーザー yuzu32utyuzu32ut
提出日時 2022-10-06 05:50:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 21 ms / 1,000 ms
コード長 121 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 10,632 KB
実行使用メモリ 8,720 KB
最終ジャッジ日時 2023-08-30 18:52:21
合計ジャッジ時間 2,753 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
8,720 KB
testcase_01 AC 20 ms
8,600 KB
testcase_02 AC 20 ms
8,600 KB
testcase_03 AC 20 ms
8,528 KB
testcase_04 AC 20 ms
8,640 KB
testcase_05 AC 20 ms
8,524 KB
testcase_06 AC 20 ms
8,520 KB
testcase_07 AC 20 ms
8,708 KB
testcase_08 AC 20 ms
8,532 KB
testcase_09 AC 19 ms
8,668 KB
testcase_10 AC 20 ms
8,576 KB
testcase_11 AC 20 ms
8,688 KB
testcase_12 AC 20 ms
8,720 KB
testcase_13 AC 20 ms
8,668 KB
testcase_14 AC 20 ms
8,524 KB
testcase_15 AC 20 ms
8,524 KB
testcase_16 AC 20 ms
8,448 KB
testcase_17 AC 19 ms
8,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import functools as ft
print("Yes" if ft.reduce(lambda a,b: a * b, [int(x) for x in input().split()]) % 3 == 0 else "No")
0