結果

問題 No.513 宝探し2
ユーザー jjjj
提出日時 2017-05-05 22:50:07
言語 Fortran
(gFortran 13.2.0)
結果
RE  
実行時間 -
コード長 278 bytes
コンパイル時間 1,050 ms
コンパイル使用メモリ 25,036 KB
実行使用メモリ 24,540 KB
平均クエリ数 3.75
最終ジャッジ日時 2023-09-23 13:25:46
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,460 KB
testcase_01 AC 26 ms
24,132 KB
testcase_02 AC 24 ms
23,508 KB
testcase_03 AC 25 ms
23,856 KB
testcase_04 AC 25 ms
24,384 KB
testcase_05 AC 25 ms
24,396 KB
testcase_06 AC 25 ms
23,940 KB
testcase_07 AC 25 ms
23,568 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 24 ms
24,540 KB
testcase_11 AC 25 ms
24,144 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