結果
| 問題 |
No.998 Four Integers
|
| コンテスト | |
| ユーザー |
EvolMax
|
| 提出日時 | 2020-06-04 16:32:01 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 325 bytes |
| コンパイル時間 | 188 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-29 12:33:44 |
| 合計ジャッジ時間 | 2,057 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 WA * 10 |
ソースコード
number_line = [int(x) for x in input().split(" ")]
number_line.sort()
pre_number = number_line[0]
handan = True
for i in range(1,4):
if number_line[i] == pre_number:
handan = False
break
else:
pre_number = number_line[i]
if handan:
print("Yes")
else:
print("No")
EvolMax