結果

問題 No.3008 某マヨネーズの網目柄
ユーザー yuki2006yuki2006
提出日時 2015-01-31 04:25:09
言語 PyPy2
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 77 bytes
コンパイル時間 1,274 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 75,912 KB
最終ジャッジ日時 2024-06-23 04:31:33
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,660 KB
testcase_01 AC 74 ms
75,256 KB
testcase_02 AC 74 ms
75,324 KB
testcase_03 WA -
testcase_04 AC 74 ms
75,832 KB
testcase_05 AC 71 ms
75,172 KB
testcase_06 AC 73 ms
75,528 KB
testcase_07 AC 73 ms
75,296 KB
testcase_08 AC 73 ms
75,388 KB
testcase_09 AC 73 ms
75,536 KB
testcase_10 WA -
testcase_11 AC 72 ms
75,416 KB
testcase_12 AC 75 ms
75,424 KB
testcase_13 WA -
testcase_14 AC 73 ms
75,288 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 73 ms
75,684 KB
testcase_18 AC 70 ms
75,708 KB
testcase_19 AC 71 ms
75,208 KB
testcase_20 WA -
testcase_21 AC 74 ms
75,392 KB
testcase_22 AC 75 ms
75,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, raw_input().split())
if N == M:
    print N
else:
    print 1
0