結果

問題 No.1019 最小格子三角形
ユーザー もりをもりを
提出日時 2020-04-03 22:04:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 451 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 10,672 KB
実行使用メモリ 7,984 KB
最終ジャッジ日時 2023-09-16 01:47:38
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,824 KB
testcase_01 AC 15 ms
7,844 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = """1 8
2 16
3 24
4 32
5 40
6 48
7 392
8 400
9 408
10 416
11 424
12 432
13 440
14 784
15 792
16 800
17 808
18 816
19 824
20 832
21 1176
22 1184
23 1192
24 1200
25 1208
26 1216
27 1224
28 1568
29 1576
30 1584
31 1592
32 1600
33 1608
34 1616
35 1960
36 1968
37 1976
38 1984
39 1992
40 2000
41 2008
42 2352"""
dct = {}
for ss in s.split('\n'):
    a, b = ss.split()
    dct[a] = b
inp = input()
if inp in dct:
    print(dct[inp])
else:
    hoge = 1/0
0