結果
| 問題 | No.998 Four Integers |
| コンテスト | |
| ユーザー |
chinchilla
|
| 提出日時 | 2020-02-28 21:56:48 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 1,000 ms |
| コード長 | 97 bytes |
| 記録 | |
| コンパイル時間 | 439 ms |
| コンパイル使用メモリ | 20,612 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-05-24 13:14:57 |
| 合計ジャッジ時間 | 3,863 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 23 |
ソースコード
a = {int(w) for w in input().split()}
print("Yes" if set(range(min(a), min(a)+4)) <= a else "No")
chinchilla