結果
| 問題 | No.1027 U+1F4A0 |
| コンテスト | |
| ユーザー |
nehan_der_thal
|
| 提出日時 | 2020-04-17 21:30:02 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 119 bytes |
| 記録 | |
| コンパイル時間 | 2,155 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2026-04-19 12:56:38 |
| 合計ジャッジ時間 | 2,699 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
x, y = map(int, input().split())
if x<y and y<2*x:
print(8)
elif x==y or y==2*x:
print(4)
else:
print(0)
nehan_der_thal