結果

問題 No.513 宝探し2
ユーザー jjjj
提出日時 2017-05-05 22:50:07
言語 Fortran
(gFortran 13.2.0)
結果
RE  
実行時間 -
コード長 278 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 30,452 KB
実行使用メモリ 25,832 KB
平均クエリ数 3.75
最終ジャッジ日時 2024-07-16 13:02:07
合計ジャッジ時間 1,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,836 KB
testcase_01 AC 20 ms
24,836 KB
testcase_02 AC 20 ms
24,580 KB
testcase_03 AC 20 ms
24,964 KB
testcase_04 AC 22 ms
24,580 KB
testcase_05 AC 25 ms
24,836 KB
testcase_06 AC 20 ms
24,844 KB
testcase_07 AC 20 ms
25,148 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 19 ms
25,220 KB
testcase_11 AC 22 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer::AX=0,AY=0
  integer::lm,um,mm
  integer::i

  print '("0 0")'
  read *, lm
  print '("100000 0")'
  read *, um
  AX = (lm-um)/2+50000
  print '("0 100000")'
  read *, mm
  AY = (lm-mm)/2+50000
  print '(i0," ",i0)',AX,AY
end program main
0