結果

問題 No.1119 Division 3
ユーザー yocto_sothothyocto_sothoth
提出日時 2020-08-01 23:37:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 90 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 11,376 KB
実行使用メモリ 15,356 KB
最終ジャッジ日時 2023-09-22 20:32:04
合計ジャッジ時間 3,521 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
15,304 KB
testcase_01 AC 79 ms
15,268 KB
testcase_02 AC 79 ms
15,320 KB
testcase_03 AC 80 ms
15,188 KB
testcase_04 AC 79 ms
15,172 KB
testcase_05 AC 78 ms
15,112 KB
testcase_06 AC 78 ms
15,124 KB
testcase_07 AC 78 ms
15,168 KB
testcase_08 AC 77 ms
15,040 KB
testcase_09 AC 78 ms
15,064 KB
testcase_10 AC 78 ms
15,056 KB
testcase_11 AC 78 ms
15,188 KB
testcase_12 AC 78 ms
15,240 KB
testcase_13 AC 81 ms
15,200 KB
testcase_14 AC 80 ms
15,132 KB
testcase_15 AC 77 ms
15,240 KB
testcase_16 AC 79 ms
15,124 KB
testcase_17 AC 82 ms
15,356 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x, y, z = gets.split.map(&:to_i)

puts x % 3 == 0 || y % 3 == 0 || z % 3 == 0 ? :Yes : :No
0