結果

問題 No.466 ジオラマ
ユーザー rocoderrocoder
提出日時 2017-06-03 13:10:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 897 ms
コンパイル使用メモリ 11,808 KB
実行使用メモリ 10,272 KB
最終ジャッジ日時 2023-10-22 02:56:13
合計ジャッジ時間 12,468 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 27 ms
10,100 KB
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 25 ms
10,100 KB
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 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 26 ms
10,100 KB
testcase_38 WA -
testcase_39 AC 26 ms
10,100 KB
testcase_40 WA -
testcase_41 AC 25 ms
10,100 KB
testcase_42 WA -
testcase_43 AC 25 ms
10,100 KB
testcase_44 WA -
testcase_45 AC 27 ms
10,100 KB
testcase_46 WA -
testcase_47 AC 24 ms
10,100 KB
testcase_48 WA -
testcase_49 AC 26 ms
10,100 KB
testcase_50 WA -
testcase_51 AC 25 ms
10,100 KB
testcase_52 WA -
testcase_53 AC 27 ms
10,100 KB
testcase_54 WA -
testcase_55 AC 26 ms
10,100 KB
testcase_56 WA -
testcase_57 AC 28 ms
10,100 KB
testcase_58 WA -
testcase_59 AC 24 ms
10,100 KB
testcase_60 WA -
testcase_61 AC 24 ms
10,100 KB
testcase_62 WA -
testcase_63 AC 26 ms
10,100 KB
testcase_64 WA -
testcase_65 AC 25 ms
10,100 KB
testcase_66 WA -
testcase_67 AC 24 ms
10,100 KB
testcase_68 WA -
testcase_69 AC 25 ms
10,100 KB
testcase_70 WA -
testcase_71 AC 24 ms
10,100 KB
testcase_72 WA -
testcase_73 AC 26 ms
10,100 KB
testcase_74 WA -
testcase_75 AC 26 ms
10,100 KB
testcase_76 AC 25 ms
10,100 KB
testcase_77 AC 25 ms
10,100 KB
testcase_78 AC 26 ms
10,100 KB
testcase_79 AC 26 ms
10,100 KB
testcase_80 AC 26 ms
10,100 KB
testcase_81 WA -
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#georama
A,B,C,D=(int(i) for i in input().split()) 
if A+B-C>D:
    print (-1)
else:
    for i in range (A):
        s=i+2
        st="s"
        print("0 "+ st)
    for i in range (C):
        s=i+A+2-C+1
        st="s"
        print("1 "+st)
    for i in range (B-C):
        s=i+A+2
        print("1 " +s)
0