結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー mmmumummmummmumummmu
提出日時 2015-07-24 23:20:47
言語 Python2
(2.7.18)
結果
AC  
実行時間 779 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 8,044 KB
最終ジャッジ日時 2023-09-22 23:03:43
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 741 ms
7,848 KB
testcase_01 AC 779 ms
8,044 KB
testcase_02 AC 14 ms
6,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = [0]*1000
K = [0]*1000

for i in range(0, 1000):
	N[i], K[i] = map(long,raw_input().split())

print "500"
0