結果

問題 No.3008 某マヨネーズの網目柄
ユーザー yuki2006yuki2006
提出日時 2015-01-31 04:25:09
言語 PyPy2
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 77 bytes
コンパイル時間 1,535 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 76,848 KB
最終ジャッジ日時 2023-09-05 08:30:41
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
76,420 KB
testcase_01 AC 74 ms
76,284 KB
testcase_02 AC 74 ms
76,620 KB
testcase_03 WA -
testcase_04 AC 74 ms
76,568 KB
testcase_05 AC 72 ms
76,512 KB
testcase_06 AC 73 ms
76,140 KB
testcase_07 AC 73 ms
76,508 KB
testcase_08 AC 72 ms
76,464 KB
testcase_09 AC 73 ms
76,332 KB
testcase_10 WA -
testcase_11 AC 75 ms
76,340 KB
testcase_12 AC 74 ms
76,560 KB
testcase_13 WA -
testcase_14 AC 72 ms
76,168 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 72 ms
76,332 KB
testcase_18 AC 72 ms
76,340 KB
testcase_19 AC 75 ms
76,276 KB
testcase_20 WA -
testcase_21 AC 74 ms
76,556 KB
testcase_22 AC 74 ms
76,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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