結果
問題 | No.1027 U+1F4A0 |
ユーザー |
![]() |
提出日時 | 2020-04-17 21:23:23 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 296 bytes |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-03 10:52:59 |
合計ジャッジ時間 | 1,361 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
# coding: utf-8# Your code here!import syssys.setrecursionlimit(10**6)readline = sys.stdin.readlineread = sys.stdin.reada,b = [int(i) for i in readline().split()]if 2*a < b:print(0)elif 2*a == b:print(4)elif a < b:print(8)elif a == b:print(4)else:print(0)