結果

問題 No.1672 404 Not Found
ユーザー zerofzerof
提出日時 2022-05-11 23:10:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 87,136 KB
実行使用メモリ 71,488 KB
最終ジャッジ日時 2023-09-26 14:50:36
合計ジャッジ時間 2,436 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,288 KB
testcase_01 AC 76 ms
71,204 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 76 ms
71,152 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 76 ms
71,256 KB
testcase_08 AC 73 ms
71,352 KB
testcase_09 AC 76 ms
71,188 KB
testcase_10 WA -
testcase_11 AC 75 ms
71,280 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

num = int(input())

if (400|num) == 400 or (500|num) == 500:
  print("Yes")
else:
  print("No")
0